我有一个在 Windows 背景上运行的简单脚本。当有事情发生时我会启动它。我怎样才能检测到脚本是否正在运行?
import threading
def sayhello():
print "hello world"
global t #Notice: use global variable!
t = threading.Timer(5.0, sayhello)
t.start()
t = threading.Timer(5.0, sayhello)
t.start()