First commit

This commit is contained in:
gauvainboiche
2024-12-05 16:04:24 +01:00
commit 5d62489b37
1336 changed files with 225822 additions and 0 deletions

13
exo3.py Normal file
View File

@@ -0,0 +1,13 @@
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()