Advertisement
Aequitas35

Untitled

Oct 17th, 2018
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.28 KB | None | 0 0
  1. greeting = input("How are you?")
  2. if greeting == "fine":
  3.     print("Great, I'm glad to hear it!")
  4. elif greeting == "bad":
  5.     print("Come on, don't mind those things so much, have fun!")
  6. else:
  7.     print("Sorry, I don't understand what you mean by " + greeting)
  8. print("See you buddy!")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement