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 Conversion with Python

Writer's picture: Magdy AhmedMagdy Ahmed

Generally to measure the temperature we make use of one of these two popular units. 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 a temperature in Fahrenheit: "))

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.

celsius = (temp - 32) * 5/9

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

Now finally let's print our temperature in Celsius:

print("Temperature {} in Fahrenheit is equal to {} in Celsius".format(temp, celsius))

Here we go we are done!


2 comments

Recent Posts

See All

2 Comments


Data Insight
Data Insight
Sep 19, 2021

You didn't provide any example of the use of your code.

Like
Magdy Ahmed
Magdy Ahmed
Sep 22, 2021
Replying to

Thank you for pointing this out

I'll take it into consideration

Like

COURSES, PROGRAMS & CERTIFICATIONS

 

Advanced Business Analytics Specialization

Applied Data Science with Python (University of Michigan)

Data Analyst Professional Certificate (IBM)

Data Science Professional Certificate (IBM)

Data Science Specialization (John Hopkins University)

Data Science with Python Certification Training 

Data Scientist Career Path

Data Scientist Nano Degree Program

Data Scientist Program

Deep Learning Specialization

Machine Learning Course (Andrew Ng @ Stanford)

Machine Learning, Data Science and Deep Learning

Machine Learning Specialization (University of Washington)

Master Python for Data Science

Mathematics for Machine Learning (Imperial College London)

Programming with Python

Python for Everybody Specialization (University of Michigan)

Python Machine Learning Certification Training

Reinforcement Learning Specialization (University of Alberta)

Join our mailing list

Data Insight participates in affiliate programs and may sometimes get a commission through purchases made through our links without any additional cost to our visitors.

bottom of page