摘要: 定时器场景 from threading import Timer class CustomTimer(Timer): def run(self): while not self.finished.is_set(): self.function(*self.args, **self.kwargs) 阅读全文
posted @ 2022-01-28 15:33 熵殇 阅读(97) 评论(0) 推荐(0) 编辑