Write an if/elif/else chain that takes the variable temp = 72 and
prints exactly one of these labels:
"hot"iftemp >= 85"warm"iftemp >= 70"cool"iftemp >= 55"cold"otherwise
For temp = 72, the expected output is:
warm
Write an if/elif/else chain that takes the variable temp = 72 and
prints exactly one of these labels:
"hot" if temp >= 85"warm" if temp >= 70"cool" if temp >= 55"cold" otherwiseFor temp = 72, the expected output is:
warm