attributeerror: 'numpy.ndarray' object has no attribute 'type'
时间: 2023-04-25 18:06:14 浏览: 1454
python中利用xml.dom模块解析xml的方法教程
这个错误是因为numpy.ndarray对象没有type属性。可能是因为您尝试使用type()函数来获取数组的数据类型,但是numpy.ndarray对象没有这个属性。您可以使用numpy.ndarray.dtype属性来获取数组的数据类型。
阅读全文