diff --git a/Fonctions/convertisseur.py b/Fonctions/convertisseur.py index a59f16c..7de30af 100644 --- a/Fonctions/convertisseur.py +++ b/Fonctions/convertisseur.py @@ -8,7 +8,7 @@ def convert(val: float,unite: str): print(pied, end=" p") if unite == "c": - fahr = (32 + 1,8 * val) + fahr = 32 + 1.8 * val print(fahr, end=" f") print()