Skip to content
Snippets Groups Projects
Select Git revision
  • 7ff9de0a7e92082b49b7938fc2abe3daa60057df
  • master default protected
2 results

viz.py

Blame
  • Forked from Vuillemot Romain / INF-TC1
    Source project has a limited visibility.
    time.py 124 B
    import timeit
    
    print(timeit.timeit("x = 2 + 2"))
    #.0188..............
    
    print(timeit.timeit("x = range(10)"))
    #.589.........