'numpy.ndarray' object has no attribute 'info'
时间: 2023-11-11 19:06:26 浏览: 147
Python3下错误AttributeError: ‘dict’ object has no attribute’iteritems‘的分析与解决
5星 · 资源好评率100%
这个错误提示表明你在一个 NumPy 数组上调用了一个不存在的方法 `info()`。可能是因为你想要使用 `numpy.info()` 函数来查看 NumPy 版本信息,但是你传入的参数不是一个函数,而是一个数组。
如果你想要查看 NumPy 数组的信息,可以使用以下方法:
- `numpy.shape()`:返回数组的形状。
- `numpy.size()`:返回数组中元素的总数。
- `numpy.dtype()`:返回数组中元素的数据类型。
- `numpy.ndim()`:返回数组的维度数。
阅读全文