python import not working eclipse

我刚开始学习python,我无法在eclipse中导入任何其他模块。 我已经创建了1个文件名为python import not working eclipse

module.py 

保留此

def test(): 

print("this is a test")

但是当我试图将其导入另一个文件在Eclipse(test.py),它不承认它

import module 

我收到以下错误

Unresolved import: module 

Unused import: module

――――――――――――――――――――

module Found at: myPckg.test

import module

回答:

发现问题 我需要补充

import myPckg.module 

像我写的:“我刚开始学。” :-)

回答:

尝试重命名module.py的东西my_module.py

其他你可以尝试:从my_module进口测试

module.py

def test(): 

print("test")

main.py

from module import test 

if __name__ == '__main__':

test()

以上是 python import not working eclipse 的全部内容, 来源链接: utcz.com/qa/259988.html

回到顶部