我有两个python模块:

a.py

import b

def hello():
  print "hello"

print "a.py"
print hello()
print b.hi()

b.py

import a

def hi():
  print "hi"

当我运行a.py时,我得到:

AttributeError: 'module' object has no attribute 'hi'

这个误差是什么意思?我该怎么解决呢?


当前回答

导入的顺序是我遇到问题的原因:

a.py:

############
# this is a problem
# move this to below
#############
from b import NewThing

class ProblemThing(object):
    pass

class A(object):
   ###############
   # add it here
   # from b import NewThing
   ###############
   nt = NewThing()
   pass

b.py:

from a import ProblemThing

class NewThing(ProblemThing):
    pass

这只是另一个例子,类似于richieindie的答案,但是有类。

其他回答

当我从git中签出一个旧版本的存储库时,我遇到了这个问题。Git替换了我的.py文件,但留下了未跟踪的.pyc文件。由于.py文件和.pyc文件不同步,.py文件中的导入命令无法在.pyc文件中找到相应的模块。

解决方案就是删除.pyc文件,并让它们自动重新生成。

我通过引用一个以错误方式导入的enum得到了这个错误,例如:

from package import MyEnumClass
# ...
# in some method:
return MyEnumClass.Member

正确的导入:

from package.MyEnumClass import MyEnumClass

希望这能帮助到别人

解决了

Python正在你的a.py模块中寻找a对象。

将该文件重命名为其他文件或使用

from __future__ import absolute_import 

在a.py模块的顶部。

在我使用python 2.7和numpy 1.15.0版本工作的情况下,它与

pip install statsmodels=="0.10.0"

你可以通过添加2个print来理解:

a.py:

print(__name__)
import b

b.py:

print(__name__)
import a

然后:

$ python3 a.py
__main__
b
a

a.py最终会被加载/执行2次。一个作为__main__,一个作为a。