From d3e733858e0871d1fd70c469487120b43ca9555b Mon Sep 17 00:00:00 2001 From: Yohann D'ANELLO Date: Tue, 26 Jan 2021 11:57:03 +0100 Subject: [PATCH] =?UTF-8?q?Ajout=20de=20parenth=C3=A8ses=20manquantes=20au?= =?UTF-8?q?tour=20de=20print?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Yohann D'ANELLO --- main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.py b/main.py index aba66eb..62289f6 100644 --- a/main.py +++ b/main.py @@ -4,8 +4,8 @@ from random import choice 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." + 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: command = input("> ")