我的python脚本中有这行代码:
os.system("xdg-open " + "User_interaction.py")
它工作正常并在与.py文件类型关联的默认应用程序中打开python文件,但我希望它运行该文件。我知道我通常只能导入模块,但user_interaction文件已经导入了代码写入的文件,因此它们无法相互导入。
如何让python脚本执行user_interaction脚本?
干杯。
答案 0 :(得分:2)
您可以在文件中添加os.system('python file.py')
test.py
import os
os.system('python hello.py')
hello.py
print "hello world"
运行python test.py
,它将打印出#34; hello world"