From e5e0af58810ee0db2284f6ff79e49f70265e10eb Mon Sep 17 00:00:00 2001 From: zack Date: Sun, 5 Apr 2026 11:38:20 -0400 Subject: [PATCH] initial commit --- temperature.py | 5 +++++ text_utils.py | 6 ++++++ 2 files changed, 11 insertions(+) create mode 100644 temperature.py create mode 100644 text_utils.py diff --git a/temperature.py b/temperature.py new file mode 100644 index 0000000..a31e315 --- /dev/null +++ b/temperature.py @@ -0,0 +1,5 @@ +#!/usr/bin/python3 + +# dummy code for hw +def to_celsius(fahrenheit): + return (fahrenheit - 32) * 5 / 9 diff --git a/text_utils.py b/text_utils.py new file mode 100644 index 0000000..336fb91 --- /dev/null +++ b/text_utils.py @@ -0,0 +1,6 @@ +#!/use/bin/python3 + +# more dummy code for hw +def shout(text): + return text.upper() +