python项目的运行问题
高洛峰
高洛峰 2017-04-17 15:00:40
0
1
317

背景

在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刚看两天,有些概念还不太清楚,见谅!

高洛峰
高洛峰

拥有18年软件开发和IT教学经验。曾任多家上市公司技术总监、架构师、项目经理、高级软件工程师等职务。 网络人气名人讲师,...

Antworte allen(1)
阿神
import sys
sys.path.append('..')

from rad import test

if __name__ == '__main__':
    test.test()

Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage
Über uns Haftungsausschluss Sitemap
Chinesische PHP-Website:Online-PHP-Schulung für das Gemeinwohl,Helfen Sie PHP-Lernenden, sich schnell weiterzuentwickeln!