mirror of
https://github.com/autistic-symposium/web3-starter-py.git
synced 2025-05-17 14:10:21 -04:00
11 lines
No EOL
124 B
Python
11 lines
No EOL
124 B
Python
#!/usr/bin/env python3
|
|
|
|
from multiprocessing import Pool
|
|
|
|
|
|
def f(x):
|
|
return x*x
|
|
|
|
|
|
p = Pool(5)
|
|
print(p.map(f, [1, 2, 3])) |