Under unix, time.clock() measures CPU time used by the current
process. os.system() will consume almost zero CPU while it waits for
the command you ran to finish.
You probably want time.time(), eg
>>> from time import clock, time
>>> print clock(), time()
0.01 1169573460.96
>>> print clock(), time()
0.01 1169573463.76
>>> print clock(), time()
0.01 1169573467.09
>>>
However running the same under windows you get a quite different
result :-
>>> from time import clock, time
>>> print clock(), time()
7.54285810068e-006 1169574534.84
>>> print clock(), time()
3.32073322168 1169574538.16
>>> print clock(), time()
7.32428004118 1169574542.15
>>>
In windows clock() counts in real time and at much higher resolution
than time().
Under windows time() counts in 1ms steps wheras it usually counts in
1us steps under linux.
source: http://mail.python.org/pipermail/python-list/2007-January/423575.html