Instagram
youtube
Facebook
Twitter

Convert Celsius to Fahrenheit

A Python program to convert temperature from Celsius to Fahrenheit using a mathematical formula.
Explanation:

Take Input: Get temperature in Celsius from the user.
 

Convert to Fahrenheit: Use the formula (Celsius * 9/5) + 32.
 

Store Result: Save the converted value in the fahrenheit variable.
 

Display Output: Print the Fahrenheit temperature.

 

Program:

celsius = float(input("Enter temperature in Celsius: "))

fahrenheit = (celsius * 9/5) + 32

print("Temperature in Fahrenheit:", fahrenheit)