From 473a3d7e60b84669575213e4d267edbf7f9e1b5b Mon Sep 17 00:00:00 2001 From: Lutz Tebbe Date: Tue, 29 Oct 2024 14:24:31 +0100 Subject: [PATCH] added the missing conversion --- celsius.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/celsius.py b/celsius.py index ec57639..b9005f2 100644 --- a/celsius.py +++ b/celsius.py @@ -1,2 +1,7 @@ -def convert temperature(t): +def celsius_to_fahrenheit(t): + '''This is me commenting properly + ''' reurn t*9/5+32 + +def fahrenheit_to_celsius(t): + return('bub')