Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import time
- x=int(input('Start at what number? '))
- while x>=1:
- print(x)
- x=x-1
- time.sleep(1)
- print ('blast off!')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement