Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question

1 Answer

up vote 3 down vote accepted

Use any:

if any(number < 10 for number in numbers):
    print ("your list has numbers less than 10.")
if any(number > 100 for number in numbers):
    print ("your list has numbers more than 100")

Also, there's an all function in python too.

And by the way, you can join both lines:

if all(10 < number < 100 for number in numbers):
    #correct code goes here
share|improve this answer
thanks man it worked! – Average kid Dec 5 '12 at 12:52

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.