Python单线程实现多个定时器的示例主要分为两种方式:使用time库和使用sched库。
使用time库实现多个定时器
示例一:
import time
def func1():
print("func1 called")
def func2():
print("func2 called")
while True:
now = time.strftime("%H:%M:%S", time.localtime())
if now == "23:59:59":
func1()
elif now == "00:00:00":
func2()
time.sleep(1)
此段代码中,我们使用了time库中的strftime函数来获取系统当前时间,然后判断当前时间是否是定时器的触发时间。在示例中,我们设定了两个定时器:一个在23:59:59触发,另一个在00:00:00触发。当时间到达触发时间时,我们执行相应的函数。
示例二:
import time
def func():
print("func called")
time.sleep(10)
start_time = time.time()
while True:
if time.time() - start_time > 5:
func()
start_time = time.time()
此段代码中,我们同样使用了time库,但这次我们利用time库的time函数以及time计算函数的差值来实现了定时器。代码中,我们定义了一个名为“func”的函数,其中包含了10秒的时间延迟。在while循环中,我们使用time函数获取当前时间,并计算当前时间与开启程序的时间差值是否大于5秒,如果大于5秒,我们执行相应的函数并将时间重置。
使用sched库实现多个定时器
示例一:
import sched
import time
s = sched.scheduler(time.time, time.sleep)
def func1():
print("func1 called at", time.strftime("%H:%M:%S", time.localtime()))
def func2():
print("func2 called at", time.strftime("%H:%M:%S", time.localtime()))
s.enterabs(time.mktime(time.strptime("23:59:59", "%H:%M:%S")), 1, func1, ())
s.enterabs(time.mktime(time.strptime("00:00:00", "%H:%M:%S")), 1, func2, ())
s.run()
此段代码中,我们使用了sched库中的scheduler函数来创建了一个调度器。使用enterabs函数我们设定了两个定时器,一个在23:59:59触发,另一个在00:00:00触发,当时间到达触发时间时,我们执行相应的函数。
示例二:
import sched
import time
s = sched.scheduler(time.time, time.sleep)
def func(sc):
print("func called at", time.strftime("%H:%M:%S", time.localtime()))
s.enter(5, 1, func, (sc,))
s.enter(5, 1, func, (s,))
s.run()
此段代码同样使用了sched库中的scheduler函数创建了一个调度器,但此次我们使用了enter函数来实现了定时器。代码中,我们定义了一个名为“func”的函数,并使用s.enter函数定时执行。在函数内部,我们打印出当前时间,并使用s.enter函数将函数自身加入调度器中实现了循环调用。
本站文章如无特殊说明,均为本站原创,如若转载,请注明出处:python单线程实现多个定时器示例 - Python技术站