From 25035a32211f574b32f901263474e1a9d7e5889d Mon Sep 17 00:00:00 2001 From: Yohann D'ANELLO Date: Tue, 26 Jan 2021 16:27:40 +0100 Subject: [PATCH] Vrai se dit True en Python, pas true Signed-off-by: Yohann D'ANELLO --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 5edac50..2189dce 100644 --- a/main.py +++ b/main.py @@ -7,7 +7,7 @@ def main(): print("Bienvenue dans le chatbot du séminaire de l'intégration continue !") print("Veuillez taper une commande. Tapez \"help\" pour afficher l'aide.") - while true: + while True: command = input("> ") args = command.split(" ") print(globals()[args[0]](*args[1:]))