Python Program to Convert Celsius To Fahrenheit

Convert Celsius To Fahrenheit

CODE OUTPUT
we take temperature in degree Celsius and convert it into degree Fahrenheit. They are related by the formula:

celsius * 1.8 = fahrenheit – 32

 

# 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))

 

37.5 degree Celsius is equal to 99.5 degree Fahrenheit

 

To test, modify the above program to convert to convert Fahrenheit to Celsuis using the following formula

celsius = (fahrenheit – 32) / 1.8

Questions