numpy.ndarray object has no attribute type
时间: 2023-11-12 11:08:08 浏览: 157
python报错: list object has no attribute shape的解决
numpy.ndarray对象没有"next"属性。该错误是因为在最新的NumPy版本中,numpy.flatiter对象的"next"方法已被弃用。取而代之的是使用内置的"__next__()"方法来获取下一个值。因此,您应该使用"fl.__next__()",而不是"fl.next()"来获取下一个值。
阅读全文