For example, if passed the following:

a = []

How do I check to see if a is empty?

link|improve this question

feedback

9 Answers

up vote 330 down vote accepted
if not a:
  print "List is empty"

Using the implicit booleanness of the empty list is quite pythonic.

link|improve this answer
34  
up'd for 'pythonic' – Frep D-Oronge Sep 10 '08 at 8:12
24  
up'd for 'implicit booleanness' – Jeffrey Greenham Mar 25 '11 at 21:34
22  
Playing devil's advocate. I don't understand why this idiom is considered pythonic. 'Explicit is better then implicit', correct? This check doesn't seem very explicit about what is is checking. – James McMahon Nov 22 '11 at 6:14
2  
+1 to James McMahon for calling this out. – hiwaylon Dec 7 '11 at 17:48
feedback

The pythonic way to do it is from the style guide:

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)
link|improve this answer
12  
up'd for linking the style guide as an authoritative reference – Carl Meyer Sep 10 '08 at 13:43
11  
Note that if seq is None you will get the same response as if seq is an empty list; if logic needs to be different in this case you need to explicitly check for None separately. – Patrick Johnmeyer Sep 10 '08 at 15:12
feedback

An empty list is itself considered false in true value testing (see python documentation):

a = []
if a:
     print "not empty"

@Daren Thomas

EDIT: Another point against testing the empty list as False: What about polymorphism? You shouldn't depend on a list being a list. It should just quack like a duck - how are you going to get your duckCollection to quack ''False'' when it has no elements?

Your duckCollection should implement __nonzero__ or __len__ so the if a: will work without problems.

link|improve this answer
You can use backticks to format code blocks inside regular text. Do that instead of making it look worse to avoid the other formatting StackOverflow has. – Chris Lutz Sep 30 '09 at 3:35
feedback

I prefer it explicitly:

if len(li) == 0:
    print 'the list is empty'

This way it's 100% clear that li is a sequence (list) and we want to test its size. My problem with if not li: ... is that it gives the false impression that li is a boolean variable.

link|improve this answer
feedback

len() is an O(1) operation for Python lists, strings, dicts, and sets. Python internally keeps track of the number of elements in these containers.

JavaScript has a similar notion of truthy/falsy.

link|improve this answer
feedback

I have seen the below as preferred, as it will catch the null list as well:

if not a:
    print "The list is empty or null"
link|improve this answer
3  
There is no null list in Python, at most a name bound to a None value – Vinko Vrsalovic Sep 10 '08 at 9:08
feedback

I prefer the following:

if a == []:
   print "The list is empty."

Readable and you don't have to worry about calling a function like len() to iterate through the variable. Although I'm not entirely sure what the BigO notation of something like this is... but Python's so blazingly fast I doubt it'd matter unless a was gigantic.

link|improve this answer
Yes, but it does break polymorphism... – Daren Thomas Sep 10 '08 at 6:56
1  
Big-O-notation is completely irrelevant here. The input is an empty list, meaning that the n in O(n) equals zero. – Konrad Rudolph Sep 10 '08 at 10:44
3  
Big O notation aside, this is going to be slower, as you instantiate an extra empty list unnecessarily. – Carl Meyer Sep 10 '08 at 13:42
feedback

Other people seem to be generalizing your question beyond just 'lists', so I thought I'd add a caveat for a different type of sequence that a lot of people might use. You need to be careful with numpy arrays. The pythonic way doesn't work at all, and using len can give you unexpected results. For example,

len( numpy.zeros((1,0)) )

returns 1, even though the array has zero elements.

The preferred method in that case is to use size.

link|improve this answer
The preferred method to check if a numpy array is empty is still to use if x: .... Empty numpy arrays equate to False. Your point about len is still very true, but it's an excellent example of why you shouldn't use len to check if a sequence is empty. – Joe Kington Feb 21 at 17:00
But if the numpy array is not empty, if x: ... seems to cast x to a bool array. If x has one element, this works but is not what you want whenever that one element happens to be 0; if x has multiple elements, python just throws a ValueError. [At least, that's what I get on python 2.7.2 with numpy 1.6.1.] – Mike Feb 21 at 18:32
Good point, I wasn't thinking it through enough. – Joe Kington Feb 22 at 15:57
Or how about you know your data type and act accordingly. So use len for lists, size for numpy, etc. – trinithis Feb 23 at 22:11
2  
Yes, that's what we're assuming. But from the rest of this page, the naive pythoner (like I was) wouldn't realize that these methods don't apply to numpy arrays -- especially because python doesn't yell at you if the array has 0 or 1 elements. It's a bit tricky, so I thought I'd add the warning. – Mike Feb 23 at 22:32
feedback

It's silly to compare if a==[] because as mentioned, it breaks polymorphism, worse, extra object creation, a sin, even if it's very fast. len IS the preferred way, because it's standard and any inherited class should support it.

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.