摘要: 1 import time 2 from threading import Thread 3 class Sayhi(Thread): 4 def __init__(self,name): 5 super().__init__() 6 self.name=name 7 def run(self): 阅读全文
posted @ 2018-11-30 22:11 南辕北辙的天空 阅读(162) 评论(0) 推荐(0) 编辑