'int'对象在numpy数组中没有属性'item'

时间:2017-10-09 05:48:31

标签: python python-3.x numpy

这是我的代码

import numpy as np
x = np.array([2, 3, 1, 0])

当我打印x

array([2, 3, 1, 0])

我正在使用this tutorial并执行

x.item(1)

错误信息是

AttributeError: 'int' object has no attribute 'item'

你的建议是什么?

1 个答案:

答案 0 :(得分:1)

代码中的某处,

之间
x = np.array([2, 3, 1, 0])

x.item(1)

有些代码会更改x的值。它可能位于以x =

开头的行上