2019年7月31日
摘要: def fun_timer(): print('Hello Timer!') global timer timer = threading.Timer(3, fun_timer) timer.start() timer = threading.Timer(1, fun_timer) timer.start() 阅读全文
posted @ 2019-07-31 11:50 itprobie-菜鸟程序员 阅读(221) 评论(0) 推荐(0)