Advertisement
Guest User

Untitled

a guest
Feb 26th, 2020
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 KB | None | 0 0
  1. name = input("What is your name ? ")
  2. print("Hello " + name)
  3. print("Let's find out something about yourself")
  4. gender=input("are you female ?")
  5. hair=input("Is your hair brown?")
  6. if hair == "yes":
  7. print ("so was mine once!")
  8. else:
  9. print("mine has been lots of colours")
  10. hair=input("what colour is your hair?")
  11. eyes = input("What colour are your eyes ?")
  12. if eyes == "blue":
  13. print("so are mine")
  14. elif eyes == "brown":
  15. print("that is the colour of my daughters eyes")
  16. else:
  17. print("green eys are really rare")
  18. print ("This is what I know about you")
  19. if hair =="yes":
  20. print("Your hair is brown")
  21. else:
  22. print("your hair is " +hair)
  23. print("your eyes are " +eyes)
  24. if gender == "yes":
  25. print ("your are female")
  26. else:
  27. print (" your are male")
  28. print ("Thank you " + name +" for sharing information about yourself with me :-)")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement