
Simple Imperial to Metric Converter//Temperature
This converter is written on Python and with it, you can convert any Fahrenheit measurement to Celsius.
https://repl.it/@BYLDOG/OldfashionedAquaOpen64
fdegrees=int(input("Enter the value in degrees Farenheit: "))
cdegrees1=fdegrees-32
cdegrees=cdegrees1/1.8
print("Your value in degrees Celsius is "+str(cdegrees))