使用subprocess.Popen.terminate()
方法可以結束子進程。示例如下:
import subprocess
process = subprocess.Popen(["ping", "www.google.com"])
# 在一段時間后結束子進程
process.terminate()
如果需要等待子進程結束后再繼續執行主程序,可以使用subprocess.Popen.wait()
方法:
import subprocess
process = subprocess.Popen(["ping", "www.google.com"])
# 等待子進程結束
process.wait()
如果需要強制結束子進程,可以使用subprocess.Popen.kill()
方法:
import subprocess
process = subprocess.Popen(["ping", "www.google.com"])
# 強制結束子進程
process.kill()