HOME/Articles/

simple python-example-92 (snippet)

Article Outline

Python example 'python-example-92'

python-example-92

Python example: python-example-92

#!/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)