python 轮询执行某函数的2种方式

时间:2021-05-22

目标:python中每隔特定时间执行某函数

方法1:使用python的Thread类的子类Timer,该子类可控制指定函数在特定时间后执行一次:

所以为了实现多次定时执行某函数,只需要在一个while循环中多次新建Timer即可。

from threading import Timerimport time def printHello(): print ("Hello") print("当前时间戳是", time.time()) def loop_func(func, second): #每隔second秒执行func函数 while True: timer = Timer(second, func) timer.start() timer.join() loop_func(printHello, 1)

运行结果如下:

Hello当前时间戳是 1569224253.1897497Hello当前时间戳是 1569224254.1911764Hello当前时间戳是 1569224255.1924803Hello当前时间戳是 1569224256.1957717Hello当前时间戳是 1569224257.1964536……

方法2:使用time模块的sleep函数可以阻塞程序执行

import time def printHello(): print ("Hello") print("当前时间戳是", time.time()) def loop_func(func, second): # 每隔second秒执行func函数 while True: func() time.sleep(second) loop_func(printHello, 1)

运行结果如下:

Hello当前时间戳是 1569224698.5843027Hello当前时间戳是 1569224699.5843854Hello当前时间戳是 1569224700.5870178Hello当前时间戳是 1569224701.5881224Hello当前时间戳是 1569224702.588771Hello当前时间戳是 1569224703.5896Hello当前时间戳是 1569224704.5902……

总结:感觉方法2更节约资源,因为同样使用了while循环,方法2没有生成多余的线程,但是方法1会生成很多的线程

以上这篇python 轮询执行某函数的2种方式就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。

声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。

相关文章