While loop in python 😭😭😭😭😭😭
The program first prompts for and reads in temperatures (all integers) until a line with no characters in received. It computes the average of all temperature readings. There need not be any readings at all because the first line itself may be empty. Your code should not fail even if there are no temperature readings. The code then reads unwind speeds. These are integers with values 0 or more. The sequence ends with the sentinel value of -1. The program computed the maximum of the wind speeds it reads. There need not be any readings at all because the first line itself maybe -1. Your code should not fail if there are no wind speed readings. The last set of readings is for humidity values (integers) between 0 and 100 (both values included) Any value outside this range is a sentinel value. The program computed the latest of the humidity readings. There need not be any readings at all because the first line itself may. E outside the range of 0 and 100. Your code should not fail even if there are no humidity readings. After all the readings, the program prints the average temperature, maximum wind speed, and the most recent humidity reading. If any of the readings is empty, the program prints an appropriate message as given below. No info on temperature No info on wind speed No info on humidity