Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
code timer
#1
While researching code timing online, the following code kept getting the most thumbs-up and always seemed to have a depreciated warning in the comments.

import time
start_time = time.time()
print(ami.oct2dec(14976))
print("--- %s seconds ---" % (time.time() - start_time))
Can anyone point me to "proper" timing code?
Reply
#2
Use the standard library's timeit module. See also additional usage examples here.

For more substantial pieces of code, consider using a profiler such as the cProfile module.
« We can solve any problem by introducing an extra level of indirection »
Reply
#3
Thanks again Gribouillis,

On cursory use, it seems what I'm looking for.
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Running a few lines of code as soon as my timer ends nethatar 3 3,179 Feb-26-2021, 01:02 PM
Last Post: jefsummers
  email timer/rss feed timer ndiniz 1 2,635 Feb-02-2021, 07:18 PM
Last Post: nilamo
  code keeps running if i use from threading import timer? birddseedd 3 3,477 Jan-25-2019, 05:00 AM
Last Post: stullis
  code for a timer SheeppOSU 2 3,186 Feb-20-2018, 11:01 AM
Last Post: buran

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020