如何从同级文件夹导入Python模块?

我经历了许多Python相对导入问题,但是我无法理解该问题/无法正常工作。

我的目录结构是:

Driver.py

A/

Account.py

__init__.py

B/

Test.py

__init__.py

Driver.py

from B import Test

Account.py

class Account:

def __init__(self):

self.money = 0

Test.py

from ..A import Account

当我尝试运行时:

python Driver.py

我得到错误

Traceback (most recent call last):

from B import Test

File "B/Test.py", line 1, in <module> from ..A import Account

ValueError: Attempted relative import beyond toplevel package

回答:

之所以发生这种情况AB是因为就Python而言,它们是独立的,无关的软件包。

__init__.py在与该目录相同的目录中创建一个目录Driver.py,一切都会按预期进行。

以上是 如何从同级文件夹导入Python模块? 的全部内容, 来源链接: utcz.com/qa/404445.html

回到顶部