当前位置:   article > 正文

Python报错AttributeError: ‘module’ object has no attribute’xxx’解决方法_attributeerror: module 'jax.ops' has no attribute

attributeerror: module 'jax.ops' has no attribute 'index_add
  1. # doctest.py
  2. class Dict(dict):
  3. '''
  4. Simple dict but also support access as x.y style.
  5. >>> d1 = Dict()
  6. >>> d1['x'] = 100
  7. >>> d1.x
  8. 100
  9. >>> d1.y = 200
  10. >>> d1['y']
  11. 200
  12. >>> d2 = Dict(a=1, b=2, c='3')
  13. >>> d2.c
  14. '3'
  15. >>> d2['empty']
  16. Traceback (most recent call last):
  17. ...
  18. KeyError: 'empty'
  19. >>> d2.empty
  20. Traceback (most recent call last):
  21. ...
  22. AttributeError: 'Dict' object has no attribute 'empty'
  23. '''
  24. def __init__(self, **kw):
  25. super(Dict, self).__init__(**kw)
  26. def __getattr__(self, key):
  27. try:
  28. return self[key]
  29. except KeyError:
  30. raise AttributeError(r"'Dict' object has no attribute '%s'" % key)
  31. def __setattr__(self, key, value):
  32. self[key] = value
  33. if __name__=='__main__':
  34. import doctest
  35. doctest.testmod()

文件名为“doctest.py”

python运行该脚本的时候报错“AttributeError: module 'doctest' has no attribute 'testmod'”



python代码在编译后会生成以pyc为文件名后綴的字节码文件,该字节码文件会经过python解释器来生成机器码文件来运行。当再次运行python文件时,解释器会直接调用该pyc的字节码文件运行直到py文件发生改变(解释器运行时会对比pyc的生成时间和py的修改时间)。

问题解决方法:不要将python代码文件命名为python预留字,模块名等。

可以看到调用的时候import doctest 的名字与文件名doctest名字相同。而实际我是要调用python自带的doctest库。因此将这个文件重命名就可以了。



声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小小林熬夜学编程/article/detail/518908
推荐阅读
相关标签
  

闽ICP备14008679号