This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import timeit | |
import threading | |
from concurrent.futures import ProcessPoolExecutor | |
#10 milhoes | |
loop = 10000000; | |
#Realiza 10 milhoes de concatenacoes | |
def worker(): | |
for x in range(0, loop): |