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() +