'int' object has no attribute 'astype'
时间: 2024-01-21 11:15:00 浏览: 71
python报错: 'list' object has no attribute 'shape'的解决
5星 · 资源好评率100%
根据提供的引用内容,'int' object has no attribute 'astype' 是一个属性错误,意味着整数对象('int' object)没有astype属性。astype()是NumPy数组对象的方法,用于将数组的数据类型转换为指定的数据类型。然而,整数对象并没有astype()方法,因此会出现该错误。
以下是一个示例代码,演示了'int' object has no attribute 'astype'错误的产生:
```python
num = 10
num.astype(np.float32)
```
阅读全文