私は2つの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'
エラーはどういう意味ですか?どうすれば修正できますか?