Answers for "total time taken by script"

0

total time taken by script

import time 

startTime = time.time()
# Your code here !
print ('The script took {0} second !'.format(time.time() - startTime))
Posted by: Guest on May-07-2021

Code answers related to "total time taken by script"

Browse Popular Code Answers by Language