Advertisement
jabela

Count Down

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