Pour vérifier les calculs, on commence par transformer les entrées en entiers

Signed-off-by: Yohann D'ANELLO <ynerant@crans.org>
This commit is contained in:
Yohann D'ANELLO 2021-01-28 14:45:58 +01:00
parent b8161eef93
commit be7efbbfa7
Signed by: ynerant
GPG Key ID: 3A75C55819C8CF85
1 changed files with 4 additions and 0 deletions

View File

@ -79,6 +79,10 @@ def calcul(left: int, right: int, res: int, operation='+'):
Vérifie si left operation b == c, a, b et c sont des entiers.
L'opération peut être +, -, *, /, &, |, ^, % ou l'un de ses alias anglais.
"""
left = int(left)
right = int(right)
res = int(res)
if operation in ['+', 'add', 'sum']:
result = left + right
if operation in ['-', 'sub']: