Article Outline
Python example 'python-example-93'
python-example-93
Python example: python-example-93
#!/usr/bin/python
# -*- coding: UTF-8 -*-
if __name__ == '__main__':
import time
start = time.clock()
for i in range(10000):
print(i)
end = time.clock()
print('different is %6.3f' % (end - start))
Useful links
- Learn Python: https://pythonbasics.org/
- More Python: https://pythonprogramminglanguage.com