摘要: threading.Timer 一次timer只生效一次,不会反复循环,如果实现循环触发,代码如下: import time import threading def createTimer(): t = threading.Timer(2, repeat) t.start() def repeat 阅读全文
posted @ 2021-07-27 16:11 pythoner_wl 阅读(8047) 评论(0) 推荐(0) 编辑