摘要:
一、NumPy库概述 numpy 是用于处理含有同种元素的多维数组运算的第三方库。numpy 库处理的最基础数据类型是由同种元素构成的多维数组(ndarray),简称“数组”。 一般使用 import numpy as np 应用numpy库。(as表示用np代替numpy) numpy库函数的使用 阅读全文
摘要:
number=int(input()) if number == 1: print(number) elif number ==2: print(number) else: n1 = 1 n2 = 0 n = 2 for i in range(3,number+1): n2 =n n = n+n1 阅读全文
摘要:
import string n=input() a=b=c=d=0 if(len(n)<8): print("弱") else: for i in n: if i in string.digits: a=1 elif i in string.ascii_lowercase: b=1 elif i i 阅读全文
摘要:
n = int(input()) # n范围内的立方数 list_cube = [0] # 用于存储立方数的列表 for i in range(1, n + 1): list_cube.append(i * i * i) for a in range(6, n + 1): for b in rang 阅读全文
摘要:
//循环单链表基本运算算法 #include <stdio.h> #include <malloc.h> typedef int ElemType; typedef struct LNode //定义单链表结点类型 { ElemType data; struct LNode *next; } Lin 阅读全文
摘要:
inp=input() l=len(inp) for i in range(l): if ord('A') <=ord(inp[i])<=ord('Z'): onew=ord('A')+((ord(inp[i])-ord('A'))+3)%26 elif ord('a') <=ord(inp[i]) 阅读全文
摘要:
import turtle turtle.pensize(5) turtle.pencolor("yellow") turtle.fillcolor("red") turtle.begin_fill() for i in range(5): turtle.fd(200) turtle.lt(72) 阅读全文
摘要:
阅读全文
摘要:
a=eval(input()) for b in range(0,6): n=pow(a,b) print(n,end=" " if b!=5 else"") 成功了,我哭了 a=eval(input()) for b in range(0,6): n=pow(a,b) print(n ,end=" 阅读全文
摘要:
import turtle turtle.color('black','blue') turtle.pensize(3) turtle.begin_fill() turtle.penup() turtle.goto(-100,80) turtle.pendown() for i in range(3 阅读全文