Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

measure time

import time
startTime = time.time()

#####your python script#####

executionTime = (time.time() - startTime)
print('Execution time in seconds: ' + str(executionTime))
Source by datatofish.com #
 
PREVIOUS NEXT
Tagged: #measure #time
ADD COMMENT
Topic
Name
2+1 =