'numpy.float64' object has no attribute 'items'
时间: 2023-06-22 09:44:29 浏览: 198
Python3下错误AttributeError: ‘dict’ object has no attribute’iteritems‘的分析与解决
5星 · 资源好评率100%
这个错误通常是因为您尝试在一个 NumPy 数组上使用 `.items()` 方法,但是 NumPy 数组没有该方法。`.items()` 方法通常用于 Python 字典,它会返回一个包含字典键值对的列表。如果您想要获取 NumPy 数组中的每个元素,可以使用 `.tolist()` 方法将其转换为 Python 列表。例如:
```
import numpy as np
arr = np.array([1, 2, 3, 4, 5])
for item in arr.tolist():
print(item)
```
这将输出:
```
1
2
3
4
5
```
阅读全文