Python Program to convert temperature in celsius to fahrenheit Change this value for a different result celsius = 37.5 Calculate Fahrenheit Fahrenheit = (celsius * 1.8) + 32 print('%0.1f degree Celsius is equal to %0.1f degree Fahrenheit' %(celsius,fahrenheit))