About Lesson
Clock():-
It returns the number of seconds elapsed since the first call made to it. It returns the value as a floating number.
import time processing_time = time.clock() print(“Current Processing Time (in sec):”, processing_time) |