Python --函數 shape()和reshape()

shape()和reshape()都是數組array中的方法 1. shape() import numpy as np a = np.array([1,2,3,4,5,6,7,8]) #一維數組 print(a.shape[0]) #值爲8,因爲有8個數據 print(a.shape[1]) #IndexError: tuple index out of range a = np.arr
相關文章
相關標籤/搜索