检测 ie 进程是否存在,存在则杀掉 ie 进程

代码块中内容如下:

import os

s = 'iexplore.exe' in os.popen('tasklist/FI "imagename eq iexplore.exe"').read()
if s == True:
    os.system('taskkill/F /IM iexplore.exe')
    print('yes')
else:
    print('no')
    pass

运行结果:

检测 ie 进程是否存在,存在则杀掉 ie 进程