针对AttributeError: ‘module’ object has no attribute’xxx’的错误归类

Posted gausstu

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了针对AttributeError: ‘module’ object has no attribute’xxx’的错误归类相关的知识,希望对你有一定的参考价值。

目前遇见的有三种类型:

  1. 拼写错误,模块一定要拼写错误,这个也是最容易犯的,发现找不到模块的时候,最好先检查一遍自己引入的模块拼写尤其是那些名字非常长的比如HTTPPasswordMgrWithDefaultRealm,这种里有部分字母要大写的一定要注意
  2. 就是在python3中,引入主模块不会将相应的子模块引入,比如引入urllib模块,但是使用的时候用的是urllib.request模块,那么在开头引入的时候就应该写的是import  urllib.request
  3. 定义python文件名的时候,不要手贱去定义一些与python关键词相同的文件名,哪怕你引入的模块不包含,也不要定义,比如引入模块urllib,但是文件名为http,那么他还是会报错,这个方面具体的还可以看下这篇博客http://lovesoo.org/python-script-error-attributeerror-module-object-has-no-attribute-solve-method.html

以上是关于针对AttributeError: ‘module’ object has no attribute’xxx’的错误归类的主要内容,如果未能解决你的问题,请参考以下文章

新的 Kivy 安装:AttributeError: 'module' 对象没有属性 'require'

类 InstagramSpider(scrapy.Spider): AttributeError: 'module' 对象没有属性 'Spider'

api = twitter.Api() AttributeError: 'module' 对象没有属性 'Api

AttributeError:'module'对象在python中没有属性'windll'

如何修复python2.7中的“AttributeError:'module'对象没有属性'storage'”错误

成功解决AttributeError: module ‘numpy‘ has no attribute ‘polyld‘