Advertisement
clairec

Untitled

Sep 19th, 2016
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.18 KB | None | 0 0
  1. Enter your code here#!/usr/bin/env python3
  2.  
  3. class Clock:
  4.     def __init__(self, hours, minutes):
  5.         self.minutes = minutes % 60
  6.         self.hours   = (hours + (minutes // 60)) % 24
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement