8 lines
156 B
Python
8 lines
156 B
Python
#!/usr/bin/python3
|
|
|
|
# dummy code for hw
|
|
def to_celsius(fahrenheit):
|
|
celsius = (fahrenheit - 32) * 5 / 9
|
|
celsius = round(celsius)
|
|
return celsius
|