Python Program to Convert Fahrenheit to Centigrade

Python program to convert fahrenheit to centigrade can be implemented by using following formula


$C = \frac{(F-32)*5}{9}$


Here, value of $F$ is the temperature in fahrenheit while $C$ is the temperature in centigrade.

Fahrenheit and Centigrade are two well known temperature scales. Both of them are used regularly in daily temperature measurements. By using above formula, the following Python program produces output in celcius ($^{\circ}C$) while taking fahrenheit ($^{\circ}F$) as input.






1. Python Program & output to convert fahrenheit to centigrade

Code has been copied
# ***************************************************
#               alphabetacoder.com
# Python program to convert Fahrenheit to Centigrade
# ***************************************************

# take input in fahrenheit
f = float(input("Enter the temperature in fahrenheit = "))

# convert fahrenheit and c
c = 5 * (f - 32) / 9

print("Temperature is", c, "in centigrade When", f, "in fahrenheit.")

Output


Enter the temperature in fahrenheit = 212

Temperature is 100.0 in centigrade When 212.0 in fahrenheit.