#Jonathan Hudson #Student Number 12347890 #Date: 2020-08-26 #Lecture Practice #Calculating Fahrenheit to Celsius OFFSET = 32 RATIO_CHANGE = 5/9 #Obtaining Fahrenheit degree sFahrenheit = input("Please enter the degree in Fahrenheit : ") #Converting the input to float iFahrenheit = float(sFahrenheit) #Calculating the Celsius fCelsius = (iFahrenheit - OFFSET) * RATIO_CHANGE #Printing the result print ("The degree in Celsius is: ", fCelsius)