Is there some way to do this in python on a mac os x from the terminal
window? Or whatever?
You can use:
% time script.py
from the command line of the terminal
--
Lawrence, oluyede.org - neropercaso.it
"It is difficult to get a man to understand
something when his salary depends on not
understanding it" - Upton Sinclair
simplest way is just put a timer on start and another on the end,
then calc the elapse. You can also take a look timeit module too
which provides similar but more powerful functions...
-Jim
On Jul 7, 2007, at 12:21 PM, David wrote:
Hi,
In matlab, I'd calculate the time for a script named test.m to run
with:
>>tic, run, toc
Is there some way to do this in python on a mac os x from the terminal
window? Or whatever?