Advertisement
Vesna_To

timer1

Aug 17th, 2019
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. from time import sleep
  2.  
  3. def countdown(t):
  4. while t > 0:
  5. if (t//60>0):
  6. print(t//60, " minutes and ", t%60, " seconds")
  7. else:
  8. print(t%60, " seconds")
  9. t = t - 1
  10. sleep(1)
  11. print("Game Over!")
  12.  
  13. countdown(120)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement