Program to convert temperature from degree centigrade to Fahrenheit.
celcius = 32; # Change the celcius here fahrenheit = 1.8* celcius + 32 print("Fahrenheit : " + str(fahrenheit))
Fahrenheit : 89.6
Comments :