我在导入语句时遇到问题,因为 Python 报告没有名为 the_page 或 the_generator 的模块。
task_a.py 包含import generator.the_page as ThePage
,当作为主脚本运行时,不会导致任何问题。
the_generator.py 包含import tasks.task_a
,但是当我将它作为主脚本运行时,python 抛出以下错误..
Traceback (most recent call last):
File "/generator/the_generator.py", line 7, in <module>
import tasks.tasks_a
File "/generator/tasks/tasks_a.py", line 3, in <module>
import generator.the_page as ThePage
ImportError: No module named the_page
这是结构。
generator/
__init__.py
the_generator.py
the_page.py
tasks/
__init__.py
task_a.py
也许你可以帮助解决我的问题。感谢所有的帮助!