Une comparaison se fait avec un double =
Signed-off-by: Yohann D'ANELLO <ynerant@crans.org>
This commit is contained in:
parent
5cb441f36d
commit
4cdefaa8a3
2
main.py
2
main.py
|
@ -44,7 +44,7 @@ def calcul(a, b, c, operation = '+'):
|
|||
Vérifie si a operation b == c, où 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
|
||||
|
|
Loading…
Reference in New Issue