1import bench 2 3 4def test(num): 5 i = 0 6 while i < num: 7 i += 1 8 9 10bench.run(lambda n: test(20000000)) 11