即使对象的类型为numpy.nparray(),也会得到元组的typeERROR

时间:2019-04-06 17:36:07

标签: python-3.x

我正在尝试获取一个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

如果有人可以帮助!

1 个答案:

答案 0 :(得分:0)

.shape是具有元组的数组的属性,而不是您需要调用的函数。因此,只需将代码更改为:print(labels.shape)