Teile 10 bis 12.
This commit is contained in:
12
teil12/pool2.py
Normal file
12
teil12/pool2.py
Normal file
@@ -0,0 +1,12 @@
|
||||
# Quelle: https://stackoverflow.com/questions/35528093/multithreading-in-python-with-a-threadpool
|
||||
from multiprocessing import Pool
|
||||
import sys
|
||||
|
||||
if __name__ == '__main__':
|
||||
|
||||
job_list = [range(10000000)]*6
|
||||
|
||||
print(f'{job_list}')
|
||||
p = Pool(2)
|
||||
print("Parallel map")
|
||||
print(p.map(sum, job_list))
|
Reference in New Issue
Block a user