美文网首页
python2.7 定时器

python2.7 定时器

作者: 魔思科技 | 来源:发表于2018-08-31 22:05 被阅读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()
    

    相关文章

      网友评论

          本文标题:python2.7 定时器

          本文链接:https://www.haomeiwen.com/subject/eynewftx.html