Advertisement
Guest User

Untitled

a guest
Jan 15th, 2019
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.21 KB | None | 0 0
  1. dayofweek = input("What day of the week is it? > ")
  2.  
  3. if dayofweek == "Friday":
  4.   print("It's TGIF!")
  5. else:
  6.   print("Wait for it....from " + dayofweek + " we'll countdown to Friday!")
  7.  
  8. print("Thanks again!")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement