Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

For example, if passed the following:

a = []

How do I check to see if a is empty?

share|improve this question

13 Answers

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

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

share|improve this answer
60  
up'd for 'pythonic' – Frep D-Oronge Sep 10 '08 at 8:12
49  
up'd for 'implicit booleanness' – Jeffrey Greenham Mar 25 '11 at 21:34
97  
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
17  
+1 to James McMahon for calling this out. – hiwaylon Dec 7 '11 at 17:48
29  
Getting picky about what counts as pythonic is unpythonic. – dubiousjim May 31 '12 at 14:29
show 4 more comments

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 seq:
if not seq:

No:

if len(seq):
if not len(seq):
share|improve this answer
23  
up'd for linking the style guide as an authoritative reference – Carl Meyer Sep 10 '08 at 13:43
17  
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
3  
Note that a non-empty numpy array can also be false if it only contains 0. bool(array([[0]])) – endolith Jan 5 at 19:47
1  
@endolith: A numpy array, even a 1D one, isn't (quite) a sequence; it breaks various sequence-related rules (intentionally, and for good reasons). – abarnert Mar 28 at 19:10

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.

share|improve this answer
Python is dynamic typed, so a list is a boolean variable too. ;) – Rob De Almeida Mar 27 at 21:19
8  
@RobDeAlmeida - That's not what dynamic typing means, and it isn't true of Python either. isinstance([], bool) == False – spookylukey Mar 27 at 22:24
It shouldn't give such impression. All Python objects have some truthiness that you can check with bool(obj). Containers are truthy when non-empty, by convention. – Kos Apr 30 at 6:25
This breaks polymorphism. It's also less readable than the accepted answer. – Hugo May 14 at 19:05

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.

share|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

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.

share|improve this answer
!![] evaluates to true, and ![] evaluates to false in js, though. – Anonymous Sep 13 '12 at 0:56
That's all true, but so what? An empty sequence is considered false in exactly the same way a numeric zero is, so why would you do if not len(a) or whatever you're suggesting instead of just if not a? And, for that matter, an empty sequence is also considered false in exactly the same way as False itself. (Well, CPython has a tiny speedup for the latter case—but the time you waste adding your own function call will be more than the time you save with that optimization.) – abarnert Mar 28 at 19:09
I normally write if not a to check for emptiness or falsiness. In certain cases where I'm using None as a sentinel value, I'll check if a is not None. I believe the point I was making about len is O(1) was that you should not be scared of using len when you do need it; unlike C's strlen, it's cheap. – George V. Reilly Apr 22 at 21:19

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.

share|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 '12 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 '12 at 18:32
1  
Good point, I wasn't thinking it through enough. – Joe Kington Feb 22 '12 at 15:57
Or how about you know your data type and act accordingly. So use len for lists, size for numpy, etc. – Thomas Eding Feb 23 '12 at 22:11
3  
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 '12 at 22:32

I had written:

if isinstance(a, (list, some, other, types, i, accept)) and not a:
    do_stuff

which was voted -1. I'm not sure if that's because readers objected to the strategy or thought the answer wasn't helpful as presented. I'll pretend it was the latter, since---whatever counts as "pythonic"---this is the correct strategy. Unless you've already ruled out, or are prepared to handle cases where a is, for example, False, you need a test more restrictive than just if not a:. You could use something like this:

if isinstance(a, numpy.array) and not a.size:
    do_stuff
elif isinstance(a, collections.Sized) and not a:
    do_stuff

the first test is in response to @Mike's answer, above. The third line could also be replaced with:

elif isinstance(a, (list, tuple)) and not a:

if you only want to accept instances of particular types (and their subtypes), or with:

elif isinstance(a, (list, tuple)) and not len(a):

You can get away without the explicit type check, but only if the surrounding context already assures you that a is a value of the types you're prepared to handle, or if you're sure that types you're not prepared to handle are going to raise errors (e.g., a TypeError if you call len on a value for which it's undefined) that you're prepared to handle. In general, the "pythonic" conventions seem to go this last way. Squeeze it like a duck and let it raise a DuckError if it doesn't know how to quack. You still have to think about what type assumptions you're making, though, and whether the cases you're not prepared to handle properly really are going to error out in the right places. The Numpy arrays are a good example where just blindly relying on len or the boolean typecast may not do precisely what you're expecting.

share|improve this answer

Python is very uniform about the treatment of emptiness. Given the following:

a = []

.
.
.

if a:
   print("List is not empty.")
else:
   print("List is empty.")

You simply check list a with an "if" statement to see if it is empty. From what I have read and been taught, this is the "Pythonic" way to see if a list or tuple is empty.

share|improve this answer

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"
share|improve this answer
10  
There is no null list in Python, at most a name bound to a None value – Vinko Vrsalovic Sep 10 '08 at 9:08

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.

share|improve this answer

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.

share|improve this answer
2  
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
6  
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
4  
this is less readable than if not a: and breaks more easily. Please don't do it. – twall Nov 12 '12 at 11:23
3  
also, btw, len(mylist) doesn't have to iterate the entire list. The length is stored, not calculated. – Ned Batchelder Mar 27 at 21:50

An empty list is not False: http://stackoverflow.com/a/11732347/818634

if not bool(a):
    print "List is empty"
share|improve this answer
6  
No need for the bool() call. – Ned Batchelder Mar 27 at 20:53
1  
An empty list is not False, but it is false, and that's what matters. The documentation clearly says that None, False, numeric 0, empty sequences, etc. are "considered false". Being False is not important—you should almost never specifically check for it (even builtin functions that are defined as boolean may return 0 instead). And, as @Ned Batchelder says, the check for bool does nothing useful at all; you're asking whether or not the object is something true, which is the same thing if already does. – abarnert Mar 28 at 19:05

In python for checking length method __len__() which can be used for lengh check.

a = []
if(a.__len__() is 0):
    print "List empty"

Above code is as faster as len() function.

share|improve this answer
17  
This is wrong in about four different ways: 1) why would you call __len__ directly?; 2) never use "is" on integers; 3) why check the length at all when if not a: does the same thing; and 4) why put parens around your condition? – Ned Batchelder Mar 27 at 20:53
3  
I think Hitul may be joking. – dubiousjim May 8 at 0:53

protected by Srikar Appal Feb 22 at 8:10

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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