当前位置:Gxlcms > Python > python关闭windows进程的方法

python关闭windows进程的方法

时间:2021-07-01 10:21:17 帮助过:15人阅读

本文实例讲述了python关闭windows进程的方法。分享给大家供大家参考。具体如下:

下面的python代码根据进程的名字调用windows的taskkill命令关闭指定的进程

import os
command = 'taskkill /F /IM QQ.exe'
#比如这里关闭QQ进程
os.system(command)

希望本文所述对大家的Python程序设计有所帮助。

人气教程排行