python定时器(Timer)用法简单实例,pythontimer
python定时器(Timer)用法简单实例,pythontimer
本文实例讲述了python定时器(Timer)用法。分享给大家供大家参考。具体如下:
# encoding: UTF-8 import threading #Timer(定时器)是Thread的派生类, #用于在指定时间后调用一个方法。 def func(): print 'hello timer!' timer = threading.Timer(5, func) timer.start()
该程序可实现延迟5秒后调用func方法的功能。
希望本文所述对大家的Python程序设计有所帮助。
相关内容
- Python实现处理管道的方法,python实现管道
- python中管道用法入门实例,python管道
- python基于multiprocessing的多进程创建方法,python多进程
- python抽象基类用法实例分析,python抽象实例分析
- python中__call__内置函数用法实例,python__call_
- Python获取系统默认字符编码的方法,python获取字符编码
- python协程用法实例分析,python协实例分析
- python中__slots__用法实例,python__slots_
- Python进程间通信用法实例,python进程用法实例
- python中引用与复制用法实例分析,python实例分析
评论关闭