使用Python / F标志终止进程

时间:2019-05-31 19:12:30

标签: python

我想知道如何在python中做到这一点。

C:\>Taskkill /IM program.exe /F

到目前为止,我的情况是这样。我只是不知道如何添加/F标志

comm = "taskkill /im " + myprogram
os.system(comm)

1 个答案:

答案 0 :(得分:1)

我认为下面的代码有效:

comm = “{} {}“.format(comm, " /F")