赞
踩
方法 1
ShellExecute(hwnd, op, file, args, dir, show)
hwnd: 父窗口的句柄,如果没有父窗口,则为0
op : 要运行的操作,为open,print或者为空
file: 要运行的程序,或者打开的脚本
args: 要向程序传递的参数,如果打开的是文件则为空
dir : 程序初始化的目录
show: 是否显示窗口
import win32api
win32api.ShellExecute(0, 'open', 'xxx.exe', '', '', 1)
执行后,python 程序马上停止。
方法 2
import system
os.system('xxx.exe')
该方法执行后,python 不会马上停止,要关闭打开的程序后,才会关闭。
参考:
https://www.cnblogs.com/shaosks/p/7804217.html
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。