关于进程的系列代码总结
encoding:utf-8
import os
使用 Python 的 os.system 运行 CMD 命令乱码解决
os.system(‘chcp 65001’)
see: https://www.cnblogs.com/jieliu8080/p/10656544.html
获取进程信息
print(os.popen(‘tasklist /FI “IMAGENAME eq YoudaoDict.exe”’).read())
判断进程
print(“YoudaoDict” in os.popen(‘tasklist /FI “IMAGENAME eq YoudaoDict.exe”’).read())
杀死进程
print(os.system(‘TASKKILL /F /IM YoudaoDict.exe’))
print(“YoudaoDict” in os.popen(‘tasklist /FI “IMAGENAME eq YoudaoDict.exe”’).read())