Maison  >  Questions et réponses  >  le corps du texte

python项目的运行问题

背景

在sublime下直接编译跑的:

这是目录结构:

import.py:

#coding:utf-8
from rad import test

if __name__ == '__main__':

    test.test()

test.py:

#coding:utf-8

def test():
    print 'this is test module'

问题

现在打开import.py直接ctrl+b编译提示找不到rad这个module:

Traceback (most recent call last):
  File "E:\py_project\py_test\main\import.py", line 2, in <module>
    from rad import test
ImportError: No module named rad

我该怎么运行这个import.py文件?

python刚看两天,有些概念还不太清楚,见谅!

高洛峰高洛峰2765 Il y a quelques jours322

répondre à tous(1)je répondrai

  • 阿神

    阿神2017-04-17 15:02:40

    import sys
    sys.path.append('..')
    
    from rad import test
    
    if __name__ == '__main__':
        test.test()
    
    

    répondre
    0
  • Annulerrépondre