Advertisement
Josh_Wiggins

newyearcountdown2.py

Jan 23rd, 2020
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.10 KB | None | 0 0
  1. import time
  2.  
  3. for i in range(10, 0, -1):
  4.     print(str(i) + '...')
  5.     time.sleep(1)
  6. print('Happy New Year!')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement