12 lines
324 B
Python
12 lines
324 B
Python
"""Temperature util functions."""
|
|
|
|
|
|
def fahrenheit_to_celsius(fahrenheit: float) -> float:
|
|
"""Convert a Fahrenheit temperature to Celsius."""
|
|
return (fahrenheit - 32.0) / 1.8
|
|
|
|
|
|
def celsius_to_fahrenheit(celsius: float) -> float:
|
|
"""Convert a Celsius temperature to Fahrenheit."""
|
|
return celsius * 1.8 + 32.0
|