python中的定时器,隔一段时间调用一个接口

import threading
import time
def fun_timer():
    print('Hello Timer!')
    print(time.time())
while True:
    print(time.time())
    timer = threading.Timer(5, fun_timer)#等待5s钟调用一次fun_timer() 函数
    timer.start()
    timer.join()

你可能感兴趣的:(python,python)