module 'numpy' has no attribute 'array'

python安装好numpy库之后,写了个numpy.py来运行出现报错:

module 'numpy' has no attribute 'array'

仔细确认后确定模块是安装好了的,在网上查找发现是文件命名numpy.py有问题,不能使用包名来命名文件名,否则调用会出错,提示找不到模块

特别记录下来

你可能感兴趣的:(module 'numpy' has no attribute 'array')