simplebench.py 126 B

12345
  1. #!/usr/bin/env python3
  2. import timeit
  3. while True:
  4. print(timeit.timeit('"-".join(str(n) for n in range(1000))', number=10000))