up vote 3 down vote favorite
share [g+] share [fb]

Most concise way to check whether a list is empty or [None]?

I understand that I can test:

if MyList:
    pass

and:

if not MyList:
    pass

but what if the list has an item (or multiple items), but those item/s are None:

MyList = [None, None, None]
if ???:
    pass
link|improve this question

72% accept rate
feedback

4 Answers

up vote 7 down vote accepted

One way is to use all and a list comprehension:

if all(e is None for e in myList):
    print('all empty or None')

This works for empty lists as well. More generally, to test whether the list only contains things that evaluate to False, you can use any:

if not any(myList):
    print('all empty or evaluating to False')
link|improve this answer
1  
It should be e is None. – nikow Aug 13 '09 at 10:01
That is probably more efficient, yes, but using == is not wrong. – Stephan202 Aug 13 '09 at 10:17
Small note: The link to all is actually to any... – Mr Shark Aug 13 '09 at 11:11
3  
Using == could be wrong if type(x).__eq__() is broken. – ilya n. Aug 13 '09 at 12:39
@ilya: good point! – Stephan202 Aug 13 '09 at 15:11
show 1 more comment
feedback

You can use the all() function to test is all elements are None:

a = []
b = [None, None, None]
all(e is None for e in a) # True
all(e is None for e in b) # True
link|improve this answer
feedback

If you are concerned with elements in the list which evaluate as true:

if mylist and filter(None, mylist):
    print "List is not empty and contains some true values"
else:
    print "Either list is empty, or it contains no true values"

If you want to strictly check for None, use filter(lambda x: x is not None, mylist) instead of filter(None, mylist) in the if statement above.

link|improve this answer
feedback

You can directly compare lists with ==:

if x == [None,None,None]:

if x == [1,2,3]
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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