摘要: from threading import Thread import time class MyThread(Thread): def __init__(self,name): super().__init__() self.name = name def run(self): print("%s 阅读全文
posted @ 2020-12-08 19:26 讲武德的年轻人 阅读(75) 评论(0) 推荐(0)