When trying to use the Python built-in module 'timeit' as follows:

timeit.Timer('print "hi"').timeit()

it prints more than one line; why is that? It keeps printing "hi" endlessly:

hi
hi
hi
hi
...
link|improve this question

68% accept rate
feedback

2 Answers

up vote 7 down vote accepted

timeit is designed to test extremely short code snippets, so it runs the code many times and averages them. As a default, it runs it 1000000 times.

You can change this by running it as follows:

timeit.Timer('print "hi"').timeit(number=1)
link|improve this answer
feedback

If you look at the docs, you will see that the statement will default to executing 1000000 times.

If you only want to run it 2 times, you would pass a 2 to the timeit() method of the Timer class.

timeit.Timer('print "hi"').timeit(2)
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.