#Author: Hans W. Guesgen #Date: 25/09/06 #Ask the user to enter the temperature in Fahrenheit fahrenheit = input("Please enter the temperature in Fahrenheit: ") #Calculate the temperature in Celsius celsius = (5.0 / 9) * (fahrenheit - 32) #Print the output to the user print fahrenheit, "degrees Fahrenheit is", celsius, "degrees Celsius"