Files
gauvainboiche 5d62489b37 First commit
2024-12-05 16:04:24 +01:00

14 lines
330 B
Python

from random import randint
def game():
print "Jouons."
reponse = raw_input("Droite ou gauche ?").lower()
if reponse == "droite" or reponse == "d":
print "Perdu, c'etait gauche."
elif reponse == "gauche" or reponse == "g":
print "Bravo."
else:
print "Decide-toi."
game()
game()