What I want is to start counting time somewhere in my code and then get the passed time, to measure the time it took to execute few function. I think I'm using the timeit module wrong, but the docs are just confusing for me.

import timeit

start = timeit.timeit()
print "hello"
end = timeit.timeit()
print end - start
link|improve this question
Not sure what exactly you want. What is confusing? – phaedrus Sep 10 '11 at 9:29
feedback

3 Answers

Using time.time to measure execution gives you the overall execution time of your commands including running time spent by other processes on your computer. It is the time the user notices, but is not good if you want to compare different code snippets / algorithms / functions / .....

More information on timeit:

If you want a deeper insight into profiling:

link|improve this answer
feedback

If you just want to measure the elapsed wall-clock time between two points, you could use time.time():

import time

start = time.time()
print "hello"
end = time.time()
print end - start

This gives the execution time in seconds.

edit A better option might be to use time.clock (thanks @Amber):

On Unix, return the current processor time as a floating point number expressed in seconds. The precision, and in fact the very definition of the meaning of “processor time”, depends on that of the C function of the same name, but in any case, this is the function to use for benchmarking Python or timing algorithms.

On Windows, this function returns wall-clock seconds elapsed since the first call to this function, as a floating point number, based on the Win32 function QueryPerformanceCounter(). The resolution is typically better than one microsecond.

link|improve this answer
and for microseconds, use datetime.time() – Inca Sep 10 '11 at 9:33
(For performance measurement, time.clock() is actually preferred, since it can't be interfered with if the system clock gets messed with, but .time() does mostly accomplish the same purpose.) – Amber Sep 10 '11 at 9:34
feedback

Given a function you'd like to time,

test.py:

def foo(): 
    # print "hello"   
    return "hello"

the easiest way to use timeit is to call it from the command line:

% python -mtimeit -s'import test' 'test.foo()'
1000000 loops, best of 3: 0.254 usec per loop

Do not try to use time.time or time.clock (naively) to compare the speed of functions. They can give misleading results.

PS. Do not put print statements in a function you wish to time; otherwise the time measured will depend on the speed of the terminal.

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.