AttributeError: 'numpy.float32' object has no attribute 'int'
时间: 2023-11-11 09:04:46 浏览: 163
AttributeError: ‘NoneType’ object has no attribute ‘children’ 错误
5星 · 资源好评率100%
这个错误通常是因为你试图将一个 numpy.float32 类型的变量转换为 int 类型,但是 numpy.float32 类型没有 int 属性。你可以使用 int() 函数将其转换为整数类型。例如:
```
import numpy as np
a = np.float32(3.14)
b = int(a)
print(b)
```
输出结果为:
```
3
```
阅读全文