From b932e1ad6e2b6c3394e50ddc7b7110a9b71f6617 Mon Sep 17 00:00:00 2001 From: Yohann D'ANELLO Date: Tue, 26 Jan 2021 16:21:00 +0100 Subject: [PATCH] =?UTF-8?q?Une=20cha=C3=AEne=20de=20caract=C3=A8res=20est?= =?UTF-8?q?=20entour=C3=A9e=20de=20guillemets?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 0c43609..27682b7 100644 --- a/main.py +++ b/main.py @@ -68,7 +68,7 @@ def calcul(a, b, c, operation = '+'): result = a & b if operation == 'and': result = a & b - if operation == |: + if operation == '|': result = a | b if operation == 'or': result = a | b