this is my code on python 3.2.3 IDLE: i'm basically having the user enter a bunch of numbers and it is then converteded to a list. afterwards, i would like to check if there are any numbers less than 10 or over 100.
n = input("(Enter a empty string to quit) Enter a number: ")
while n != "":
numbers.append(int(n))
n = input("(Enter a empty string to quit) Enter a number; ")
print ("The list is", numbers)
if numbers < 10:
print ("your list has numbers less than 10.")
if numbers > 100:
print ("your list has numbers more than 100")
the list comes out alright but when i try to check if any values are less than 10 or over 100, it has an error. how can i fix this?