Python program to convert Celsius into Fahrenheit

Amansingh Javatpoint
1 min readMar 11, 2021

--

Python program to convert Celsius into Fahrenheit

This program explains how we can take the temperature in Celsius and convert them into Fahrenheit.

Celsius

Celsius, also known as centigrade, is a measurement unit representing temperature. It is named after the Swedish astronomer Anders Celsius. It is an SI derived unit used by most countries worldwide.

Fahrenheit

It is also used for the measurement of the temperature scale. It is named after Polish-born German physicist Daniel Gabriel Fahrenheit. It uses degrees Fahrenheit as a unit for temperature.

The mathematical formula to convert degree Celsius into degree Fahrenheit is given below:

celsius * 1.8 = Fahrenheit — 32

--

--

No responses yet