Latest web development tutorials

Python obejmuje ćwiczenia 93

Python 100 Li Python 100 Li

Tytuł: 3 funkcją czasu, na przykład.

Program Analysis: Brak.

Kod źródłowy:

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

Powyższy przykład wyjście jest:

0
1
2
3
4
……
different is  0.014

Python 100 Li Python 100 Li