Say I have the following code:
假设我有以下代码:
def func(a,b):
return (func2(a),func3(3))
def paralel_func(alist,blist)
with ThreadPoolExecutor(max_workers=None) as executor:
executor.map(func,alist,blist)
deSay I have the following code:
假设我有以下代码:
def func(a,b):
return (func2(a),func3(3))
def paralel_func(alist,blist)
with ThreadPoolExecutor(max_workers=None) as executor:
executor.map(func,alist,blist)
de