This is a list of Pig Latin . This program has you choose directions.In the end if you choose the right directions you will win if not you will have a game over.
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 == “right”:
print “This is the Verbal Abuse Room, you heap of parrot droppings!”
elif answer == “right” or answer == “right”:
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()