gpt4 book ai didi

python - AttributeError: 'module' 对象没有属性

转载 作者:行者123 更新时间:2023-12-04 14:00:40 26 4
gpt4 key购买 nike

我有两个 python 模块:

一个.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'

错误是什么意思?我如何解决它?

最佳答案

你有相互的顶级进口,这几乎总是一个坏主意。

如果你真的必须在 Python 中进行相互导入,那么这样做的方法是在一个函数中导​​入它们:

# In b.py:
def cause_a_to_do_something():
import a
a.do_something()

现在 a.py 可以安全地做 import b不会造成问题。

(乍一看, cause_a_to_do_something() 可能会非常低效,因为每次调用它时它都会执行一次 import,但实际上导入工作只在第一次完成。第二次和以后导入模块时,这是一个快速的操作。)

关于python - AttributeError: 'module' 对象没有属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47967661/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com