Instagram
youtube
Facebook
Twitter

Convert Fahrenheit to Celsius

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

Explanation:

  1. Take Input: Get temperature in Fahrenheit from the user.
     
  2. Convert to Celsius: Use the formula (Fahrenheit - 32) * 5/9.
     
  3. Store Result: Save the converted value in the celsius variable.
     
  4. Display Output: Print the Celsius temperature.

 

Program:

fahrenheit = float(input("Enter temperature in Fahrenheit: "))

celsius = (fahrenheit - 32) * 5/9

print("Temperature in Celsius:", celsius)