python 定时器

# encoding: UTF-8
import threading

def fun_timer():
    print('Hello Timer!')
    global timer
    timer = threading.Timer(5.5, fun_timer)
    timer.start()

timer = threading.Timer(1, fun_timer)
timer.start()

一秒之后输出一次 Hello Timer,然后每隔5秒输出一次

你可能感兴趣的:(python 定时器)