Advertisement
Guest User

Untitled

a guest
Nov 22nd, 2014
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.57 KB | None | 0 0
  1. def clinic():
  2. print('Clean Your Room!')
  3. print("You're in bed and your mother is telling you to clean your room but you don't want to get out of bed.")
  4. print('A. Tell her to be quiet.')
  5. print('B. Get out of bed.')
  6. answer = raw_input ("Choose an option")
  7. if answer == "Tell her to be quiet." or answer == "a":
  8. print("She screams back at you and comes rushing to your room. She is very mad and starts to clean your room for you.")
  9. print('A. You feel sorry for her and you help her out.')
  10. print("B. You stay in bed and tell her you're tired.")
  11. answer = raw_input ("Choose an option")
  12. if answer == "You feel sorry for her and you help her out." or answer == "a":
  13. print("She says thank you but is still a bit stressed out.")
  14. print('A. When she leaves the room you go back to bed.')
  15. print("B. Finish cleaning the room.")
  16. answer = raw_input ("Choose an option.")
  17. if answer == "Finish cleaning the room." or answer == "b":
  18. print("Well Done!")
  19. elif answer == "When she leaves the room you go back to bed." or answer == "a":
  20. print ("She comes back in and see you in the bed.")
  21. print ("She has given up.")
  22. elif answer == "You stay in bed and tell her you're tired." or answer == "b":
  23. print("She starts to cry as she feels you don't care for her.")
  24. print("A. You Stay in bed.")
  25. print ("B. You feel sorry for her and you help her out.")
  26. answer = raw_input ("Choose an option")
  27. if answer == "You feel sorry for her and you help her out." or answer == "b":
  28. print("She says thank you but is still a bit stressed out.")
  29. print('A. When she leaves the room you go back to bed.')
  30. print("B. Finish cleaning the room.")
  31. answer = raw_input ("Choose an option.")
  32. if answer == "Finish cleaning the room" or answer == "b":
  33. print("Well Done!")
  34. elif answer == "When she leaves the room you go back to bed." or answer == "a":
  35. print ("She comes back in and see you in the bed.")
  36. print ("She has given up.")
  37. elif answer == "You Stay in bed." or answer == "a":
  38. print ("She comes back in and see you in the bed.")
  39. print ("She has given up.")
  40. elif answer == "Get out of bed." or answer == "b":
  41. print("Good Job, Your mum is pleased and your room is clean.")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement