摘要: 一、NumPy库概述 numpy 是用于处理含有同种元素的多维数组运算的第三方库。numpy 库处理的最基础数据类型是由同种元素构成的多维数组(ndarray),简称“数组”。 一般使用 import numpy as np 应用numpy库。(as表示用np代替numpy) numpy库函数的使用 阅读全文
posted @ 2020-05-06 21:01 叶落知秋max 阅读(652) 评论(0) 推荐(0) 编辑
摘要: 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 阅读全文
posted @ 2020-04-08 11:43 叶落知秋max 阅读(142) 评论(0) 推荐(0) 编辑
摘要: 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 阅读全文
posted @ 2020-04-01 17:31 叶落知秋max 阅读(177) 评论(0) 推荐(0) 编辑
摘要: 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 阅读全文
posted @ 2020-04-01 11:23 叶落知秋max 阅读(158) 评论(0) 推荐(0) 编辑
摘要: //循环单链表基本运算算法 #include <stdio.h> #include <malloc.h> typedef int ElemType; typedef struct LNode //定义单链表结点类型 { ElemType data; struct LNode *next; } Lin 阅读全文
posted @ 2020-03-27 10:44 叶落知秋max 阅读(99) 评论(0) 推荐(0) 编辑
摘要: 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]) 阅读全文
posted @ 2020-03-25 07:48 叶落知秋max 阅读(294) 评论(0) 推荐(0) 编辑
摘要: 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) 阅读全文
posted @ 2020-03-18 16:21 叶落知秋max 阅读(164) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-03-14 21:20 叶落知秋max 阅读(157) 评论(1) 推荐(0) 编辑
摘要: 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=" 阅读全文
posted @ 2020-03-14 10:03 叶落知秋max 阅读(117) 评论(0) 推荐(0) 编辑
摘要: 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 阅读全文
posted @ 2020-03-12 21:05 叶落知秋max 阅读(139) 评论(0) 推荐(0) 编辑