码迷,mamicode.com
首页 > 编程语言 > 详细

python3 定时器Timer

时间:2019-06-16 20:23:36      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:pre   star   __name__   time   定时   start   read   coding   传参   

# -*- coding: utf-8 -*-
from threading import Timer


def talk(name):
    print("%s is talking." % name)


if __name__ == __main__:
    ‘‘‘Timer(等待多少秒, 执行的函数, args给函数传参数)‘‘‘
    timer = Timer(3, talk, args=("lily",))
    timer.start()

# lily is talking.

 

python3 定时器Timer

标签:pre   star   __name__   time   定时   start   read   coding   传参   

原文地址:https://www.cnblogs.com/lilyxiaoyy/p/11032639.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!