python如何杀掉进程
Posted 只宅不技术
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python如何杀掉进程相关的知识,希望对你有一定的参考价值。
#启动一个线程
t=threading.Thread(target=cpu_app,args=()) t.daemon = True t.start()
#打印出当前线程的名称和id print(threading.currentThread().name) print(threading.currentThread().ident)
杀进程的话,使用
handle=os.getpid() subprocess.Popen("taskkill /F /T /PID " + str(handle) , shell=True)
以上是关于python如何杀掉进程的主要内容,如果未能解决你的问题,请参考以下文章