摘要:
线程池的基类是 concurrent.futures 模块中的 Executor,Executor 提供了两个子类,即 ThreadPoolExecutor 和 ProcessPoolExecutor,其中 ThreadPoolExecutor 用于创建线程池,而 ProcessPoolExecut 阅读全文
摘要:
方法一: 使用as_completed函数 from concurrent.futures import ThreadPoolExecutor, as_completed from time import sleep def method(times): sleep(times) print('sl 阅读全文