Skip to content

Instantly share code, notes, and snippets.

View lihdaf's full-sized avatar
💭
Sorry dear, i'm busy enjoying my life

Fadhil lihdaf

💭
Sorry dear, i'm busy enjoying my life
View GitHub Profile
@lihdaf
lihdaf / stopwatch.py
Created November 19, 2017 05:41 — forked from igniteflow/stopwatch.py
A simple stopwatch implemented in Python
import datetime
class Timer(object):
"""A simple timer class"""
def __init__(self):
pass
def start(self):
"""Starts the timer"""