Skip to content

Instantly share code, notes, and snippets.

@malanjp
Created December 12, 2013 01:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save malanjp/7921647 to your computer and use it in GitHub Desktop.
Save malanjp/7921647 to your computer and use it in GitHub Desktop.
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import time
class Timer(object):
def __init__(self, verbose=False):
self.verbose = verbose
def __enter__(self):
self.start = time.time()
return self
def __exit__(self, *args):
self.end = time.time()
self.secs = self.end - self.start
self.msecs = self.secs * 1000 # millisecs
if self.verbose:
print 'elapsed time: %f ms' % self.msecs
with Timer() as t:
i = 0
while i < 1000000:
print i
i += 1
print 'while =', t.secs
with Timer() as t:
for i in range(1000000):
print i
print 'for =', t.secs
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment