Execution Time Script

You can measure the execution time by using:

import time
start=time.clock()

.... 

end=time.clock()
execTime=end-start