定时器

import threading

def hello(msg1, msg2):
    print('hello' + msg1 + msg2)
    timer = threading.Timer(1, hello, ['xuebi', 'kele'])  # 一秒钟之后调用hello()函数
    timer.start()  # 启动

timer = threading.Timer(1, hello, ['xuebi', 'kele'])    # 一秒钟之后调用hello()函数
timer.start()    # 启动

效果如下:

helloxuebikele
helloxuebikele
helloxuebikele
helloxuebikele
...

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