You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
285 B

def saisieCode(pin1,pin2):
code = 0
while code != pin1:
print("Entrez le code :")
code = int(input())
print("Premier code bon.")
while code != pin2:
print("Entrez le code :")
code = int(input())
print("Bravo.")
saisieCode(4242,2121)