摘要: import threading, time def thead(num): print("线程%s开始执行" % num) time.sleep(5) print("线程%s执行完毕" % num) def main(): print("主方法开始执行") poll = [] # 线程池 for 阅读全文
posted @ 2020-06-17 15:20 小小小光子 阅读(363) 评论(0) 推荐(0) 编辑