From 26b57c409a465f2fffcb63ac3b3e2c3c6691f0cb Mon Sep 17 00:00:00 2001 From: Samuel Vermeulen Date: Thu, 5 Jan 2023 15:09:30 +0100 Subject: [PATCH] up --- Fonctions/code_secret_2x.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 Fonctions/code_secret_2x.py diff --git a/Fonctions/code_secret_2x.py b/Fonctions/code_secret_2x.py new file mode 100644 index 0000000..8fce11c --- /dev/null +++ b/Fonctions/code_secret_2x.py @@ -0,0 +1,13 @@ +def saisieCode(): + code = 0 + while code != 4242: + print("Entrez le code :") + code = int(input()) + +saisieCode() + +print("Encore une fois.") + +saisieCode() + +print("Bravo.") \ No newline at end of file