timeit.repeat(stmt='pass', setup='pass', timer=, repeat=3, number=1000000, globals=None)
Create a Timer
instance with the given statement, setup code and timer function and run its repeat()
method with the given repeat count and number executions. The optional globals argument specifies a namespace in which to execute the code.
Changed in version 3.5: The optional globals parameter was added.
Please login to continue.