标签: python multithreading multiprocessing threadpool
我们是否可以解析一些值到Pool.map()函数?例如,
def func(a): return a+c c=q+w+e+r #just some computation pool=multiprocessing.Pool(8) result=pool.map(func,list)
很显然,这是行不通的,如果我想将常量c放入池中,是否有解决方案?