measure time

Solutions on MaxInterview for measure time by the best coders in the world

showing results for - "measure time"
Edoardo
11 Jan 2018
1import time
2startTime = time.time()
3
4#####your python script#####
5
6executionTime = (time.time() - startTime)
7print('Execution time in seconds: ' + str(executionTime))
8
similar questions
queries leading to this page
measure time