Advertisement
BbJLeB

09. Clock - part 2

May 31st, 2019
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.28 KB | None | 0 0
  1. # 09. Clock - part 2
  2. hours = 0
  3. minutes = 0
  4. secundes = 0
  5. for minutes in range(-1,23):
  6.     minutes += 1
  7.     for hours in range(-1 ,59):
  8.         hours +=1
  9.         for secundes in range(-1, 59):
  10.             secundes += 1
  11.             print(f"{minutes} : {hours} : {secundes}")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement