Ebook123

导航

2021年4月9日 #

Python Threading 模块计算所有线程的执行时间

摘要: import threadingimport timedef run(n): print("task",n) time.sleep(1)t_objs = []start_time = time.time()for i in range(1,6): t = threading.Thread(targe 阅读全文

posted @ 2021-04-09 22:09 Ebook123 阅读(805) 评论(0) 推荐(0) 编辑