Python 3.6.1 ModuleNotFoundError

时间:2017-06-03 05:14:02

标签: python python-3.x module

我仍然对python很陌生,而且我在使模块工作时遇到了一些麻烦。我什么时候做这样的事情:

module.py:
   def function(): var = "this is some stuff"

main.py:
   import module

但是当我运行main.py时,我最终得到:ModuleNotFoundError:没有名为' module'

的模块 编辑:我可能应该提到这是在原帖中,文件在同一目录中

1 个答案:

答案 0 :(得分:0)

您需要从本地项目路径导入。

就像您的项目名称是test, 应用名称是test1,和 test1有module.py和main.py

你需要像这样导入

来自test.testing导入模块的

我希望这可能会有所帮助。