Write Python program to convert temperature from Fahrenheit to Kelvin
Topic: Write Python program to convert temperature from Fahrenheit to Kelvin
Solution
def Fahrenheit_to_Kelvin(F): return 273.5 + ((F - 32.0) * (5.0/9.0)) F = 100 print("Temperature in Kelvin ( K ) = {:.3f}" .format(Fahrenheit_to_Kelvin( F )))
List all Python Programs