initial commit

This commit is contained in:
2026-04-05 11:38:20 -04:00
parent 689e2b84db
commit e5e0af5881
2 changed files with 11 additions and 0 deletions

5
temperature.py Normal file
View File

@@ -0,0 +1,5 @@
#!/usr/bin/python3
# dummy code for hw
def to_celsius(fahrenheit):
return (fahrenheit - 32) * 5 / 9