Advertisement
sclnl

Untitled

Jan 25th, 2020
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.20 KB | None | 0 0
  1. from time import sleep
  2.  
  3. def countdown(t):
  4.         while t > 0:
  5.                 print("min=",t//60,"sec=",t%60)
  6.                 t -= 1
  7.                 sleep(1)
  8.  
  9. countdown(120)
  10. print("game over")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement