Advertisement
jabela

Count Down Timed

Dec 13th, 2015
199
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.12 KB | None | 0 0
  1. import time
  2. count = 10
  3. while (count > 0):
  4.    print (count)
  5.    count = count - 1
  6.    time.sleep(1)
  7. print ("Blast Off!")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement