Une comparaison se fait avec un double =

Signed-off-by: Yohann D'ANELLO <ynerant@crans.org>
This commit is contained in:
Yohann D'ANELLO 2021-01-26 16:16:34 +01:00
parent 5cb441f36d
commit 4cdefaa8a3
Signed by: ynerant
GPG Key ID: 3A75C55819C8CF85
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@ def calcul(a, b, c, operation = '+'):
Vérifie si a operation b == c, a, b et c sont des entiers.
L'opération peut être +, -, *, /, &, |, ^, % ou l'un de ses alias anglais.
"""
if operation = '+':
if operation == '+':
result = a + b
if operation == 'sum':
result = a + b