Write a python program to convert temperature from Fahrenheit to Celsius.
=======================================
Fahrenheit = int(input("Enter a temperature in Fahrenheit: "))
Celsius = (Fahrenheit - 32) * 5.0/9.0
print ("Temperature:", Fahrenheit, "Fahrenheit = ", Celsius, " C")
OUTPUT:
Comments
Post a Comment