temperature_status(temp) that classifies a Celsius reading using Python's chained comparison syntax: "Freezing" if temp <= 0, "Cold" if 0 < temp <= 15, "Mild" if 15 < temp <= 25, "Hot" if temp > 25. You must use chained comparisons (e.g. 15 < temp <= 25) rather than combining two separate comparisons with and.temperature_status(20)
"Mild"
15 < 20 <= 25.
temperature_status(-3)
"Freezing"
temp is <= 0.
Python allows writing `a < x <= b` directly as one expression.
Order the branches from lowest to highest for clarity.