Advertisement
Guest User

Untitled

a guest
Feb 27th, 2015
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. print("Hello Friend!")
  2. myName = input("What is your name?")
  3. print("Hello",myName)
  4. myVar = input("How are you?")
  5. if(myVar == "I'm good"):
  6. print("I'm happy to hear that",myName,".")
  7. elif(myVar == "I'm ok"):
  8. print("I'm happy to hear that",myName,".")
  9. elif(myVar == "I'm fine"):
  10. print("I'm happy to hear that",myName,".")
  11. else:
  12. print("I'm sorry to hear that")
  13. no1_Topic = input("What do you want to talk about?")
  14. no2_Topic = input("Do you like",no1_Topic,"?")
  15. if(no2_Topic == "Yes"):
  16. print("Me too.")
  17. elif(no2_Topic == "No"):
  18. print ("Me neither")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement