top of page
learn_data_science.jpg

Data Scientist Program

 

Free Online Data Science Training for Complete Beginners.
 


No prior coding knowledge required!

Fahrenheit to Celsius Converter

Hey everyone, today we will be building a Fahrenheit to Celsius Converter in Python.

How does it work?

Generally to measure the temperature we make use of one of these two popular units i.e. 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.

Let's Code

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.









We will convert the temperature into float using float() so that we can perform calculations on it.

Now finally let's perform calculation and convert the temperature into Celsius.





This expression you see above is the general formula to convert Fahrenheit into Celsius.

Now finally let's print our temperature in Celsius:




Here we go we are done! Here we have used f-strings to directly place the variable within the print statement.


Thank you so much for reading! I hope you found this project useful.

0 comments

Recent Posts

See All
bottom of page