Advertisement
pitster

Untitled

Sep 25th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. import random
  2. name = input("Enter your name ")
  3. print('Hello' '', '', name, '...')
  4. print("Are you doing ok" ", " + name + "?")
  5. response = input("")
  6. print(response + " indeed...," + " Cordially, thanks for sharing how you feel " + name + ".")
  7. friends = ["Tom", "Jack", "Harry"]
  8. print("Hey " + name + "," + " Do you know " + (random.choice(friends)) + "?")
  9. friend_response = input("")
  10. print("Ok mate, I'll log your response into my memory")
  11. foods = ["cheese", "cake", "cabbage", "yogurt", "chicken salad"]
  12. print("Hey, " + name + ", I wonder..., do you like " + (random.choice(foods)) + "?")
  13. foods_response = input("")
  14. print("Totally..., I couldn't agree more..., I can't eat food but if I could, it would probably be alfalfa.")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement