building an Fahrenheit to Celsius Converter
today we will be building a Fahrenheit to Celsius Converter in Python.
Generally to measure the temperature we make use of one of these two popular Fahrenheit & Celsius.
Converting one into another is usually boring and can be easily automated. Today we will be building a simple & short project which will convert Fahrenheit to Celsius for us in seconds.
So the first thing we are going to do is to ask the user for the temperature in Fahrenheit to convert it into the Celsius.
temp = float(input("Enter temperature in Fahrenheit: "))
We will convert the temperature into float using float() so that we can perform calculations on it.
celsius = (temp - 32) * 5/9
This expression you see above is the general formula to convert Fahrenheit into Celsius.
let's print our temperature in Celsius:
print(f"{temp} in Fahrenheit is equal to {celsius} in Celsius")
user input is 6:
Enter temperature in Fahrenheit: 6
output:
6.0 in Fahrenheit is equal to -14.444444444444445 in Celsius
Comments