import time class Birthday: def __init__(self): self.rebirth() def amountOfSecond(self): return time.time() - self.time def rebirth(self): self.time = time.time()