Skip to content Skip to main navigation Skip to footer

python中定时器timer的用法解析

在python中如何通过使用timer类来实现程序的延迟,下面的内容将会通过一个例子来介绍Timer类,并实现定时器延迟调用::

本文实例讲述了python定时器(Timer)用法。分享给大家供大家参考。具体如下:

# encoding: UTF-8
import threading
#Timer(定时器)是Thread的派生类,
#用于在指定时间后调用一个方法。
def func():
  print 'hello timer!'
timer = threading.Timer(5, func)
timer.start()
 

该程序可实现延迟5秒后调用func方法的功能。


python中定时器timer的用法就是这样,欢迎大家参考。。。。

0 Comments

There are no comments yet

Leave a comment

Your email address will not be published.