How do you calculate program run time in python?
--------------------------------------------------
Hire the world's top talent on demand or became one of them at Toptal: https://topt.al/25cXVn
--------------------------------------------------
Music by Eric Matyas
https://www.soundimage.org
Track title: Hypnotic Orient Looping
--
Chapters
00:00 How Do You Calculate Program Run Time In Python?
00:12 Accepted Answer Score 64
00:43 Answer 2 Score 4
00:54 Answer 3 Score 6
01:12 Answer 4 Score 351
01:20 Thank you
--
Full question
https://stackoverflow.com/questions/5622...
--
Content licensed under CC BY-SA
https://meta.stackexchange.com/help/lice...
--
Tags
#python #time #runtime
#avk47
    Hire the world's top talent on demand or became one of them at Toptal: https://topt.al/25cXVn
--------------------------------------------------
Music by Eric Matyas
https://www.soundimage.org
Track title: Hypnotic Orient Looping
--
Chapters
00:00 How Do You Calculate Program Run Time In Python?
00:12 Accepted Answer Score 64
00:43 Answer 2 Score 4
00:54 Answer 3 Score 6
01:12 Answer 4 Score 351
01:20 Thank you
--
Full question
https://stackoverflow.com/questions/5622...
--
Content licensed under CC BY-SA
https://meta.stackexchange.com/help/lice...
--
Tags
#python #time #runtime
#avk47
ANSWER 1
Score 351
Quick alternative
import timeit
start = timeit.default_timer()
#Your statements here
stop = timeit.default_timer()
print('Time: ', stop - start)  
ACCEPTED ANSWER
Score 64
You might want to take a look at the timeit module:
http://docs.python.org/library/timeit.html
or the profile module:
http://docs.python.org/library/profile.html
There are some additionally some nice tutorials here:
http://www.doughellmann.com/PyMOTW/profile/index.html
http://www.doughellmann.com/PyMOTW/timeit/index.html
And the time module also might come in handy, although I prefer the later two recommendations for benchmarking and profiling code performance:
ANSWER 3
Score 6
@JoshAdel covered a lot of it, but if you just want to time the execution of an entire script, you can run it under time on a unix-like system.
kotai:~ chmullig$ cat sleep.py 
import time
print "presleep"
time.sleep(10)
print "post sleep"
kotai:~ chmullig$ python sleep.py 
presleep
post sleep
kotai:~ chmullig$ time python sleep.py 
presleep
post sleep
real    0m10.035s
user    0m0.017s
sys 0m0.016s
kotai:~ chmullig$