摘要: 1 先创建一个ndarry数组a import numpy as np a = np.arange(start=1, stop=10, step=2) print(a) [1 3 5 7 9] 2 将a切片赋值于一个数组b b = a[0:1] print(b) [1] 3 将a直接赋值于c c = 阅读全文
posted @ 2022-11-17 17:03 来个煎饼 阅读(134) 评论(0) 推荐(0) 编辑