This commit is contained in:
Samuel Vermeulen 2023-01-12 14:57:48 +01:00
parent 9aaeea6c79
commit 5d6d69de07

View File

@ -8,7 +8,7 @@ def convert(val: float,unite: str):
print(pied, end=" p") print(pied, end=" p")
if unite == "c": if unite == "c":
fahr = (32 + 1,8 * val) fahr = 32 + 1.8 * val
print(fahr, end=" f") print(fahr, end=" f")
print() print()