Python 定时器 timer
- #!/usr/bin/env python
- #coding=utf-8
- 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()
本文展示了一个使用Python实现的定时器功能,通过创建多个定时器实例来演示如何实现周期性任务调度。

被折叠的 条评论
为什么被折叠?