1. 程式人生 > >python3 語法小記(七) shape的使用

python3 語法小記(七) shape的使用

shape函式是numpy.core.fromnumeric中的函式,它的功能是檢視矩陣或者陣列的維數。

shape函式有兩種表達形式:(1)np.shape(a)

                                              (2)a.shape

a=np.array([[1,2],[3,4],[2,4]])
np.shape(a)
>>>(3,2)

a.shape
>>>(3,2)
np.shape(a)[0]
>>>3    #第一維的長度

a.shape[0]
>>>3