-
-
Save mperlet/05f230425332850897ed90b1e0662443 to your computer and use it in GitHub Desktop.
simple python stopwatch
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import time | |
class T(object): | |
def __init__(self): | |
self.now = time.time() | |
def end(self): | |
print(time.time() - self.now) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment