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
...
|
feedback
|
|
You can change this by running it as follows:
| |||
|
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
| |||
|
feedback
|