尝试了很多写法,有各种timer的trick,也有结合sched来做的(感觉其实是穿一条裤子的)。最后还是觉得这个略有点二的写法比较实用。
import threading
def say_sth(str):
print str
t = threading.Timer(2.0, say_sth,[str])
t.start()
if __name__ == '__main__':
timer = threading.Timer(2.0,say_sth,['i am here too.'])
timer.start()
不清楚在某些特殊应用场景下有什么缺陷否。