Skip to content

Instantly share code, notes, and snippets.

@codecademydev
Created January 12, 2017 10:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save codecademydev/c6195324ccd48923afb812f5079c7074 to your computer and use it in GitHub Desktop.
Save codecademydev/c6195324ccd48923afb812f5079c7074 to your computer and use it in GitHub Desktop.
Codecademy export
def clinic():
print "You've just entered the clinic!"
print "Do you take the door on the left or the right?"
answer = raw_input("Type left or right and hit 'Enter'.").lower()
if answer == "left" or answer == "l":
print "This is the Verbal Abuse Room, you heap of parrot droppings!"
elif answer == "right" or answer == "r":
print "Of course this is the Argument Room, I've told you that already!"
else:
print "You didn't pick left or right! Try again."
clinic()
clinic()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment