摘要: class Countdown(object): counter = 5 def count(self): if self.counter == 0: reactor.stop() else: print (self.counter, '...') self.counter -= 1 reactor 阅读全文
posted @ 2023-03-02 13:53 AngDH 阅读(10) 评论(0) 推荐(0) 编辑