I am trying to make a loop which will continue to ask for inputs unless a number out side of 0-100 is entered.
posting homework description as well to avoid getting shit on again. In this assignment, you will design and implement a Python program that has three while loops.
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 computes the latest of the humidity readings. There need not be any readings at all because the first line itself may be outside the range 0 through 100. Your code should not fail even if there are no humidity readings.
while humid in range(0,100):
this is what I have right now, and it stops after one number.