For this WSQ, again, those Python 3 programming examples where really useful.

This is my code:

tempF = float(input("Give me a temperature in Fahrenheit. "))

tempC = float( 5.0 * (tempF - 32) / 9.0)

print("The temperature in Celsius is",tempC)

if tempC <= 0:
    print("Water freezes at this temperature.")
elif 0 < tempC < 100:
    print("Water is liquid at this temperature.")
else:
    print("Water boils at this temperature.")

CC BY 4.0 WSQ05 – Temperature by finntec is licensed under a Creative Commons Attribution 4.0 International License.