如何运行从命令行导入另一个用户定义模块的python文件

时间:2019-06-05 22:55:52

标签: python-3.x

我的项目结构如下:

软件包: unittestpackage

Python文件:test_class1.py,test_class2.py

注意 test_class1.py 正在导入 test_class2.py

我正在尝试使用以下命令从命令行运行test_class1.py,但面临以下问题。

使用的命令: python test_class1.py

我如何运行test_class1.py,它正在从命令行导入用户定义的模块test_class2.py。

enter image description here

1 个答案:

答案 0 :(得分:0)

不要使用POST http://example.com/ HTTP/1.1 cache-control: no-cache Content-Type: application/json; charset=utf-8 Accept: application/json, text/json, text/x-json, text/javascript, application/xml, text/xml User-Agent: RestSharp/106.6.9.0 Host: example.com Content-Length: 4 Accept-Encoding: gzip, deflate Connection: Keep-Alive test ,而应该使用import unittestpackage.test_class2import test_class2

此外,您的目录中是否有import * from test_class2文件?