Write a fucntion to convert Fahrenheit to Celsius
Topic: Write a fucntion to convert Fahrenheit to Celsius
Solution
def Fahrenheit_to_Celsius(f): celsius = (f - 32) / 1.8 return celsius
List all Python Programs
Solution
def Fahrenheit_to_Celsius(f): celsius = (f - 32) / 1.8 return celsius