Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

how to use timeit in python 3

import timeit
import_module = "import random"
testcode = ''' 
def test(): 
    return random.randint(10, 100)
'''
print(timeit.repeat(stmt=testcode, setup=import_module))
Source by www.guru99.com #
 
PREVIOUS NEXT
Tagged: #timeit #python
ADD COMMENT
Topic
Name
8+5 =