python2.7 定时器
2018-08-31 本文已影响6人
魔思科技
#coding=utf-8
import threading
#定义函数
def funTimer():
print 1
global timer
timer = threading.Timer(1,funTimer)
timer.start()
timer = threading.Timer(1,funTimer)
timer.start()
#coding=utf-8
import threading
#定义函数
def funTimer():
print 1
global timer
timer = threading.Timer(1,funTimer)
timer.start()
timer = threading.Timer(1,funTimer)
timer.start()