Advertisement
Josh_Wiggins

newyearcountdown.py

Jan 22nd, 2020
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.13 KB | None | 0 0
  1. import time
  2.  
  3. list = [10, 9, 8, 7, 6, 5, 4, 3, 2, 1]
  4. for i in list:
  5.     print(str(i)+ '...')
  6.     time.sleep(1)
  7. print('Happy New Year!')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement