python編譯,python進程問題

 2023-11-19 阅读 28 评论 0

摘要:一.查看進程是否存在 import os def get_process_count(imagename):p = os.popen('tasklist /FI "IMAGENAME eq %s"' % imagename)return p.read().count(imagename) def watch_func():if get_process_count('python.exe') == 0 : #進程不

一.查看進程是否存在

import os
def get_process_count(imagename):p = os.popen('tasklist /FI "IMAGENAME eq %s"' % imagename)return p.read().count(imagename)
def watch_func():if get_process_count('python.exe') == 0 :       #進程不存在的情況print("000")else:                                           #進程存在的情況print("11111") 

?二.關閉進程

command1 = "taskkill /F /IM firefox.exe"
os.system(command1)

python編譯,?

轉載于:https://www.cnblogs.com/gaoyukun/p/9522849.html

版权声明:本站所有资料均为网友推荐收集整理而来,仅供学习和研究交流使用。

原文链接:https://hbdhgg.com/4/181380.html

发表评论:

本站为非赢利网站,部分文章来源或改编自互联网及其他公众平台,主要目的在于分享信息,版权归原作者所有,内容仅供读者参考,如有侵权请联系我们删除!

Copyright © 2022 匯編語言學習筆記 Inc. 保留所有权利。

底部版权信息