So führen Sie in Python die Iterationen mit Single -Loop -Iterationen aus
from multiprocessing.dummy import Pool as ThreadPool
pool = ThreadPool(4)
results = pool.map(my_function, my_array)
Cute Capuchin