从另一个脚本调用脚本的最佳方法是什么?我有一个名为test1.py的脚本,它不在模块中。它只有在脚本本身运行时应该执行的代码。没有函数、类、方法等。我有另一个作为服务运行的脚本。我想从作为服务运行的脚本调用test1.py。例如:文件test1.pyprint "I am a test"print "see! I do nothing productive."文件service.py# Lots of stuff heretest1.py # do whatever is in test1.py我知道一种方法,就是打开文件,读取内容,基本上是对它进行评估。我想还有更好的方法。至少我希望如此。
添加回答
举报
0/150
提交
取消