1import bench 2 3 4def func(a): 5 pass 6 7 8def test(num): 9 for i in iter(range(num)): 10 func(i) 11 12 13bench.run(test) 14