摘要: from threading import Thread #线程 import time def task(name): print('%s is running' %name) time.sleep(2) if __name__ == '__main__': t1=Thread(target=ta 阅读全文
posted @ 2019-07-21 08:21 zhouhao666 阅读(117) 评论(0) 推荐(0) 编辑