Advertisement
Guest User

Untitled

a guest
Apr 24th, 2019
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. x = input("What mood are you in?: ")
  2.  
  3. if x == "happy":
  4. print("it is great to see you happy")
  5.  
  6. elif x == "sad":
  7. print("I feel bad to hear that")
  8.  
  9. elif x == "nervous":
  10. print("Grab a bear dude!")
  11.  
  12. elif x == "excited":
  13. print("Nice to hear that, lets make a party")
  14.  
  15. else:
  16. print("Try entering another mood")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement