python脚本AttributeError: module 'xxxx' has no attribute 'xxxxx'错误解决办法
Posted 酸菜超人
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python脚本AttributeError: module 'xxxx' has no attribute 'xxxxx'错误解决办法相关的知识,希望对你有一定的参考价值。
最近写脚本发现了这样的一个错误,脚本、环境什么的完全正确,但执行的时候却报错:AttributeError: module \'xxxx\' has no attribute \'xxxxx\',查阅了一些相关的博客,最终解决了问题,原来是python代码在编译后会生成以pyc为文件名后綴的字节码文件,该字节码文件会经过python解释器来生成机器码文件来运行。当再次运行python文件时,解释器会直接调用该pyc的字节码文件运行直到py文件发生改变(解释器运行时会对比pyc的生成时间和py的修改时间)
问题的解决方法就是:
命名py脚本时,不要与python预留字,模块名等相同
以上是关于python脚本AttributeError: module 'xxxx' has no attribute 'xxxxx'错误解决办法的主要内容,如果未能解决你的问题,请参考以下文章
Python脚本报错AttributeError: ‘module’ object has no attribute’xxx’解决方法
python 脚本运行时报错: AttributeError: 'module' object has no attribute ***
python脚本AttributeError: module 'xxxx' has no attribute 'xxxxx'错误解决办法
Python脚本报错AttributeError: ‘module’ object has no attribute’xxx’解决方法
Python 脚本报错AttributeError: 'module 'yyy' has no attribute 'xxx'的解决方法