Python 92

Python 100 [Python 100] Python 100

2

(Python 2.0+)

#!/usr/bin/python # -*- coding: UTF-8 -*- if __name__ == '__main__': import time start = time.time() for i in range(3000): print i end = time.time() print end - start

0
1
2
3
4
……

Python 100 [Python 100] Python 100