python AttributeError: module 'numpy' has no attribute 'arrary'
时间: 2023-11-11 20:07:33 浏览: 101
python3.4的numpy模块
这个错误通常是因为在导入numpy模块时,命名了一个与numpy模块同名的文件,导致程序在导入numpy时实际上导入了同名文件,而不是numpy模块。因此,当程序调用numpy.array()方法时,会出现“module 'numpy' has no attribute 'array'”的错误提示。解决方法是将同名文件重命名或删除,确保程序导入的是正确的numpy模块。
阅读全文