Skip to content

Instantly share code, notes, and snippets.

@krvajal
Created June 1, 2016 15:11
Show Gist options
  • Save krvajal/436116d74850df4ca731db8939917c6c to your computer and use it in GitHub Desktop.
Save krvajal/436116d74850df4ca731db8939917c6c to your computer and use it in GitHub Desktop.
timer from python
from timeit import default_timer as timer
start = timer()
# long operation here
duration = timer() - start
print "Duration", duration
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment