2024年10月28日
摘要: `import numpy as np a = np.ones(4, dtype=int) #输出[1, 1, 1, 1] b = np.ones((4,), dtype=int) #同a c= np.ones((4,1)) #输出4行1列的数组 d = np.zeros(4) #输出[0, 0, 阅读全文
posted @ 2024-10-28 11:58 VVV1 阅读(1) 评论(0) 推荐(0) 编辑
摘要: `import numpy as np a1 = np.array([1, 2, 3, 4]) #生成整型数组 a2 = a1.astype(float) a3 = np.array([1, 2, 3, 4], dtype=float) #浮点数 print(a1.dtype); print(a2. 阅读全文
posted @ 2024-10-28 11:57 VVV1 阅读(1) 评论(0) 推荐(0) 编辑
摘要: `s1=[str(x)+str(y) for x,y in zip(['v']*4,range(1,5))] s2=list(zip('abcd',range(4))) print(s1); print(s2) print("学号:3005")` 阅读全文
posted @ 2024-10-28 11:56 VVV1 阅读(1) 评论(0) 推荐(0) 编辑
摘要: `def filter_non_unique(L): return [item for item in L if L.count(item) == 1] a=filter_non_unique([1, 2, 2, 3, 4, 4, 5]) print(a) print("学号:3005")` 阅读全文
posted @ 2024-10-28 11:56 VVV1 阅读(2) 评论(0) 推荐(0) 编辑
摘要: `a = filter(lambda x: x>10,[1,11,2,45,7,6,13]) b = filter(lambda x: x.isalnum(),['abc', 'xy12', '***']) isalnum()是测试是否为字母或数字的方法 print(list(a)); print( 阅读全文
posted @ 2024-10-28 11:55 VVV1 阅读(1) 评论(0) 推荐(0) 编辑
摘要: `import random x=random.randint(1e5,1e8) #生成一个随机整数 y=list(map(int,str(x))) #提出每位上的数字 z=list(map(lambda x,y: x%21 and y%20, [1,3,2,4,1],[3,2,1,2])) pri 阅读全文
posted @ 2024-10-28 11:54 VVV1 阅读(1) 评论(0) 推荐(0) 编辑
摘要: `x1="abcde" x2=list(enumerate(x1)) for ind,ch in enumerate(x1): print(ch) print("学号:3005")` 阅读全文
posted @ 2024-10-28 11:54 VVV1 阅读(1) 评论(0) 推荐(0) 编辑
摘要: `import numpy.random as nr x1=list(range(9,21)) nr.shuffle(x1) #shuffle()用来随机打乱顺序 x2=sorted(x1) #按照从小到大排序 x3=sorted(x1,reverse=True) #按照从大到小排序 x4=sort 阅读全文
posted @ 2024-10-28 11:53 VVV1 阅读(1) 评论(0) 推荐(0) 编辑
摘要: `from ex2_12_2 import * print(factorial(6)) fib(300) print("学号:3005")` 阅读全文
posted @ 2024-10-28 11:51 VVV1 阅读(5) 评论(0) 推荐(0) 编辑
摘要: ` from math import * a=sin(3) #求正弦值 b=pi #常数π c=e #常数e d=radians(180) #把角度转换为弧度 print(a); print(b); print(c); print(d) print("学号:3005") ` 阅读全文
posted @ 2024-10-28 11:50 VVV1 阅读(2) 评论(0) 推荐(0) 编辑