Program to Measure Elapsed Time in Python || Python


In this we are going to see a basic program to measure elapsed time in Python Programming Language.



from timeit import default_timer as timer

start = timer()
print(23*2.3)

end = timer()
print(end - start)

# Coded By DHIRAJ SHELKE


#ENJOY CODING


Post a Comment

FOR ANY DOUBTS AND ERRORS FEEL FREE TO ASK. YOUR DOUBTS WILL BE ADDRESSED ASAP

Previous Post Next Post