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
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