Write a Python program to enter temperature in Fahrenheit and convert to Celsius
PROGRAM
# Python program to convert Fahrenheit to Celsius
# Input: Temperature in Fahrenheit
fahrenheit = float(input(“Enter temperature in Fahrenheit: “))
# Convert to Celsius
celsius = (fahrenheit – 32) * 5/9
# Output the result
print(“Temperature in Celsius:”, celsius)
OUTPUT
