Guest User

Untitled

a guest
Nov 19th, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. #TheWeather
  2. #What you need to put on for the day
  3. rainy=input("is it raining?(yes or no)").lower()
  4. cold = input("is it cold outside?(yes or no)").lower()
  5.  
  6. if rainy == "Yes" and cold == "Yes":
  7. print("Wear a raincoat.")
  8. elif rainy == "Yes" and cold == "No":
  9. print("Take an umbrella.")
  10. elif rainy == "No" and cold == "Yes":
  11. print("Wear a jacket.")
  12. elif rainy == "No" and cold =="No":
  13. print("Wear your shorts and t-shirt.")
Add Comment
Please, Sign In to add comment