如何添加.py脚本在另一个py(python)上运行

时间:2015-06-15 04:54:16

标签: python

我有一个python(.py)脚本。我想添加一个代码来在gui.py脚本上运行guideType.py。当我打开程序时,它运行gui.py.所以我想在启动时执行guideType.py

gui.py = http://d-h.st/UsZY

guideType.py = http://d-h.st/7SNF

3 个答案:

答案 0 :(得分:0)

您可以执行脚本的import,这将导致该脚本中的语句被执行。

import gui

答案 1 :(得分:0)

如果要执行第二个python脚本,请尝试使用os.system("python guideType.py")。否则,subprocess here可能会帮助您实现所要求的目标。

答案 2 :(得分:0)

尝试这样的事情

import os, sys

path_python_exec = sys.executable
path_exec_file = ''

command = '%s %s'%(path_python_exec, path_exec_file)
os.system(command)

根据您的需要进行自定义。