Calculates the time taken by a python script to execute successfully or unsuccessfully. This can also be used to determine the time taken to execute any shell command or an executable.
- Run
python timer.py <script> <necessary-arguments*> - For e.g
python timer.py test_add.py 2 3will execute thetest_add.pyscript with2and3as its commandline arguments. Any number of commandline arguments can be passed.

