摘要: import time from threading import Thread class worker(Thread): def run(self): for x in xrange(0,11): print x time.sleep(1) class waiter(Thread): def run(self... 阅读全文
posted @ 2019-02-28 10:08 凯文队长 阅读(1097) 评论(0) 推荐(0) 编辑