Why don't I get faster run-times with ThreadPoolExecutor? – Ubuntu
In order to understand how threads work in Python, I wrote the following simple function: def sum_list(thelist:list, start:int, end:int): s = 0 for i in range(start,end): s += thelist[i]**3//10 return s Then I created a list and tested how much…