Latest web development tutorials

Python comprend des exercices 92

Python 100 Li Python 100 Li

Titre: Exemple 2 fonctions de temps.

Analyse du programme: Aucun.

Source Code:

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

L'exemple ci-dessus sortie est:

0
1
2
3
4
……

Python 100 Li Python 100 Li