python 代码强行杀死进程

def kill_prot(prot):
    '''
    强行关闭进程
    prot:进程.exe
    '''
    
    os.system('taskkill /f /im %s' %prot)

python 代码强行杀死进程