Guest User

Untitled

a guest
Oct 19th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.36 KB | None | 0 0
  1. name=raw_input("""Hello, what is your name?
  2. > """)
  3. print "Nice to meet you "+name
  4. print "My name is Eliza"
  5. feel=raw_input("""How do you feel now """+name+"""?
  6. > """)
  7. print "I feel "+feel+" sometimes too."
  8. reason=raw_input("Why do you feel "+feel+"""?
  9. > """)
  10. if "?"in reason:
  11.     print "Hey! I ask the questions."
  12. else:
  13.     print "I know how you feel "+name
Add Comment
Please, Sign In to add comment