这是我的代码
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'
你的建议是什么?
答案 0 :(得分:1)
代码中的某处,
之间x = np.array([2, 3, 1, 0])
和
x.item(1)
有些代码会更改x
的值。它可能位于以x =