1 2 3 4 5 6 7 8 9 10
import time ITERS = 20000000 def run(f): t = time.time() f(ITERS) t = time.time() - t print(t)