说我有两个目录,A
和example
。在A
中,我有以下program.py
和目录example
。在example
中,我有一个名为test.py
的python文件。在此文件中,我具有函数test
(如果它们位于不同目录中,如何将test
导入program
中?
答案 0 :(得分:0)
我们有program.py所在的目录A。
在program.py中添加以下行-
from example.test import *
test()
在目录示例的脚本test.py中,我们添加以下代码-
def test():
print("Success")
return None
当您运行脚本program.py时,输出为-
Success