import numpy as np # 数组的dtype 为int8(一个字节) x = np.array([1,2,3,4,5], dtype = np.int8) print (x.itemsize) # 数组的dtype 现在为float64(八个字节) y ...
確定! 回上一頁