没有错误,但仍然无法终止进程
import time
import subprocess
total_breaks = 3
break_count = 0
print("This program started on " + time.ctime())
while(break_count < total_breaks):
time.sleep(5)
process = subprocess.Popen([r'F:\software\firefox\Firefox.exe',
'-new-tab', 'http://www.google.com/'])
time.sleep(6)
process.kill()
break_count = break_count + 1
我希望杀死我的标签,因为它没有显示错误,但无法正常工作。
答案 0 :(得分:0)
重新打开后它会自动运行...我不知道为什么吗?