如何从目录导入python文件?

时间:2019-06-07 12:23:21

标签: python-3.x macos-mojave

说我有两个目录,Aexample。在A中,我有以下program.py和目录example。在example中,我有一个名为test.py的python文件。在此文件中,我具有函数test(如果它们位于不同目录中,如何将test导入program中?

1 个答案:

答案 0 :(得分:0)

我们有program.py所在的目录A。

在program.py中添加以下行-

from example.test import *
test()

在目录示例的脚本test.py中,我们添加以下代码-

def test():
    print("Success")
    return None

当您运行脚本program.py时,输出为-

Success