import numpy as np #int16和int32内存少,int64内存大但精度高 a = np.array([1,23,4],dtype=np.int32) b = np.zeros((3,4),dtype=np.int16) c = np.arange(10,20,2) #定义一个三行四列的 d = np.arange(12).reshape((3,4)) e = np.linspace(1,10,20) #1和10分20段的数列
g = np.linspace(1,10,6).reshape((2,3)) print(a.dtype) print(b) print(c) print(d) print(e) print(g)