我正在尝试获取一个numpy数组的形状,但是我遇到了typreERROR,上面写着“'tuple'object is not callable”。 这是代码:-
labels=np.ones(length,dtype=int)
print(type(labels))
labels[:43]=0
labels[43:263]=1
labels[263:]=2
print(labels.shape())#produces error
如果有人可以帮助!
答案 0 :(得分:0)
.shape
是具有元组的数组的属性,而不是您需要调用的函数。因此,只需将代码更改为:print(labels.shape)