尝试了很多写法,有各种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()
不清楚在某些特殊应用场景下有什么缺陷否。
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。