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

comprehension.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.........