python cmd窗口命令提示窗口关闭方法,pythoncmd,import osos.


import osos.system('firefox.exe')

我把上面这段python 代码 编译成了exe ,启动firefox后,中间那个cmd.exe 会启动着,有什么办法隐藏这个cmd 窗口?

testx1=subprocess.Popen(r"C:UserscoolVideosthunder_shortcut.lnk",shell=True)
time.sleep(1)#等待使子进程打开
testx1.kill()#关闭cmd窗口

不使用 cmd.exe 就是了。

使用subprocess.Popen并且不要指定shell=True。

编橙之家文章,

评论关闭