Answers for "how to check the start up time with python"

6

get start time and end time in python

import time
start_time = time.time()
main()
print("--- %s seconds ---" % (time.time() - start_time))
Posted by: Guest on December-10-2020

Code answers related to "how to check the start up time with python"

Python Answers by Framework

Browse Popular Code Answers by Language