Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的 python 脚本中有这行代码:
os.system("xdg-open " + "User_interaction.py")
它工作正常,并在与 .py 文件类型关联的默认应用程序中打开 python 文件,但我希望它运行该文件。我知道我通常可以只导入模块,但 user_interaction 文件已经在导入写入代码的文件,因此它们无法相互导入。
如何让 python 脚本执行 user_interaction 脚本?
干杯。
你可以os.system('python file.py')在你的文件中有这个
os.system('python file.py')
测试.py
import os os.system('python hello.py')
你好.py
print "hello world"
运行python test.py,它会打印出“hello world”
python test.py