Consider the check_temp function, which returns a label give…

Consider the check_temp function, which returns a label given a temperature reading (in C): def check_temp(temp_c): if temp_c < 0: return "Freezing" elif temp_c < 20: return "Cool" elif temp_c < 30: return "Warm" else: return "Hot" The function works as intended, however it...