6 lines
105 B
Python
6 lines
105 B
Python
#!/usr/bin/python3
|
|
|
|
# dummy code for hw
|
|
def to_celsius(fahrenheit):
|
|
return (fahrenheit - 32) * 5 / 9
|