进程池和线程池 concurrent.futures import ProcessPoolExecutor,ThreadPoolExecutor

import time#线程池可以用shutdown submit

from threading import current_thread

from concurrent.futures import ThreadPoolExecutor,ProcessPoolExecutor

def f1(n):

  print(n)

  time.seelp(1)

  return n*n

if __name__ =="__main__":
  tp = ThreadPoolExecutor(4)

  lst = []

  for   i   in range(10):

    res = tp.submit(f1,i)

扫描二维码关注公众号,回复: 5054242 查看本文章

    lst.append(res)

  tp.shutdown()

  for i in lst:

    print(i.result())

import time#进程池  要用map

from threading import current_thread

from concurrent.futures import ThreadPoolExecutor,ProcessPoolExecutor

def f1(n):

  print(n)

  time.seelp(1)

  return n*n

if __name__ =="__main__":
  tp = ProcessPoolExecutor(4)

  res = tp.map(f1,rangr(10))

  print(res)

猜你喜欢

转载自www.cnblogs.com/16795079a/p/10316321.html
今日推荐