Files
homework-6/temperature.py
2026-04-05 11:45:18 -04:00

6 lines
112 B
Python

#!/usr/bin/python3
# dummy code for hw
def to_celsius(fahrenheit):
return round((fahrenheit - 32) * 5 / 9)