Write Function to convert temperature from degree Celsius to Kelvin
Topic: Write Function to convert temperature from degree Celsius to Kelvin
Solution
def Celsius_to_Kelvin(C): return (C + 273.15) C = 100 print("Temperature in Kelvin ( K ) = ", Celsius_to_Kelvin(C))
List all Python Programs