Fahrenheit to Celsius
Converts Fahrenheit to Celsius.
- Follow the conversion formula
C = (F - 32) * 5 / 9.
def fahrenheit_to_celsius(degrees):
return ((degrees - 32) * 5 / 9)fahrenheit_to_celsius(77) # 25.0Converts Fahrenheit to Celsius.
C = (F - 32) * 5 / 9.def fahrenheit_to_celsius(degrees):
return ((degrees - 32) * 5 / 9)fahrenheit_to_celsius(77) # 25.0