Files
homework-6/temperature.py
2026-04-05 11:46:31 -04:00

7 lines
127 B
Python

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