Answers for "how to find the time taken for a particular line in python"

6

find time of run for python code

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

python calculate time taken

import time
start = time.process_time()
# your code here    
print(time.process_time() - start)
Posted by: Guest on June-03-2020

Code answers related to "how to find the time taken for a particular line in python"

Python Answers by Framework

Browse Popular Code Answers by Language