import numpy as np >>> a = np.array([1, 2, 3, 4]) #一維陣列建立 >>> b = np.array([(2.5, 1, 3, 4.5), (5, 6, 7, 8)], dtype = float) #二維陣列 ...
確定! 回上一頁