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 question already has an answer here:

The API I'm working with can return empty [] lists.

What isn't working:

if myList is not None: #not working
if myList is not []: #not working

What will work?

share|improve this question
6  
for reference: the "is" operator compares identity, not equality, and not all empty lists are the same (or appending to one would append to all.) So the check failed. – cobbal Nov 12 '09 at 21:48
1  
Using != instead of is not would have made this work, though the if myList form is preferred. – Mike Graham May 5 '10 at 3:13

marked as duplicate by Denis Otkidach, X.L.Ant, Jon Egerton, Roman Cheplyaka, tombom Feb 11 at 12:10

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

3 Answers

up vote 69 down vote accepted
if not myList:
  print "Nothing here"
share|improve this answer
1  
Oh jeez, thanks. – y2k Nov 12 '09 at 21:26
6  
It is things like this that what make python a real joy to work with – eggonlegs May 2 '12 at 11:06

Empty lists evaluate to False in boolean contexts (such as if some_list:).

share|improve this answer

I like Zarembisty's answer. Although, if you want to be more explicit, you can always do:

if len(my_list) == 0:
    print "my_list is empty"
share|improve this answer
12  
You can do that, but it would violate pep 8, which says: - For sequences, (strings, lists, tuples), use the fact that empty sequences are false. Yes: if not seq: if seq: No: if len(seq) if not len(seq) – Chris Lacasse Nov 12 '09 at 22:16
Thank you for pointing this out to me, Chris Lacasse. I had no known about pep8, earlier – inspectorG4dget Nov 14 '09 at 0:53

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