► Python Program to Convert Fahrenheit to Kelvin
Steps followed:
1. Take temperature input from user in Fahrenheit
2. use below formula to convert Fahrenheit To Kelvin
Temp in Kelvin = (Temp in Fahrenheit - 32) * 5/9 + 273.15
3. print the result
#Python Program to Convert Kelvin to Fahrenheit
# Take temperature input from user in Fahrenheit
temp_in_fahrenheit = float(input("provide temperature input in Fahrenheit: "))
# convert Fahrenheit to Kelvin
temp_in_kelvin = (temp_in_fahrenheit - 32) * 5/9 + 273.15
#printing the result
print('%0.2f degree fahrenheit is equal to %0.2f degree kelvin' %(temp_in_fahrenheit,temp_in_kelvin))
provide temperature input in Fahrenheit: -369.67
-369.67 degree fahrenheit is equal to 50.00 degree kelvin
provide temperature input in Fahrenheit: 260.33
260.33 degree fahrenheit is equal to 400.00 degree kelvin
provide temperature input in Fahrenheit: -9.67
-9.67 degree fahrenheit is equal to 250.00 degree kelvin