从另一个py文件中的列表(字符串)调用函数

时间:2016-10-02 11:32:21

标签: python maya

我有3个python脚本('testPrint01.py','testPrint02.py','testPrint03.py') 我想从'testPrint02'中调用函数

    import sys
    sys.path.append(path)

    a = ['testPrint01','testPrint02','testPrint03']
    import sys.a[1]
    a[1].justPrintIt()

谢谢

1 个答案:

答案 0 :(得分:0)

如果您与目标脚本位于同一目录中,则可以使用

from testPrint02 import x

其中x是您要导入的函数。

修改: 要从字符串变量导入模块,您可以使用importlib,如下所述:import module from string variable