vote up 14 vote down star
2

For example, if passed the following:

a = []

How do I check to see if a is empty?

flag

68% accept rate

8 Answers

vote up 54 vote down check
if not a:
  print "List is empty"

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

link|flag
up'd for 'pythonic' – Frep D-Oronge Sep 10 '08 at 8:12
vote up 0 vote down

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|flag
vote up 1 vote down

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|flag
vote up 21 vote down

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|flag
up'd for linking the style guide as an authoritative reference – Carl Meyer Sep 10 '08 at 13:43
2  
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
vote up 0 vote down

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|flag
Yes, but it does break polymorphism... – Daren Thomas Sep 10 '08 at 6:56
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
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
vote up -3 vote down

While empty lists evaluate to false, I think it's a bit of a wart in the language - None evaluates to false too! So does "" (the empty string). This is something I would not rely on, as it confuses the hell out of me / makes me remember too much stuff, which is why we program in Python after all: We don't want to have to remember all about angle bracket operators, default variables, punctuation variables and implicit conversions, right?

So, my advice:

if len(a) == 0:
   print "The list is empty"

in a pinch you could also use:

if not len(a):
   print "the list is empty"

I think it's kinda ok for integers to be evaluated in a boolean context as well as None. Otherwise (empty list, empty string), I always have an uneasy feeling.

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?

link|flag
The following values are considered false: Instances of user-defined classes, if the class defines a __nonzero__() or __len__() method, when that method returns the integer zero or bool value False. [Truth Value Testing](docs.python.org/lib/truth.html) – J.F. Sebastian Sep 10 '08 at 11:34
wow. I didn't know that - learnt python 1.5 and have been winging it since then ;) But I still stand by my point in that it might confuse people - who wants to remember to implement __len__() and __nonzero__() every time, just for empty sequence testing? – Daren Thomas Sep 10 '08 at 11:44
Totally disagree. In Python any empty container evaluates to False. Nothing complex or difficult about it, it's quite intuitive. You can rely on it for all built-in types, and if you implement your own container type you should make sure it does the same. – Carl Meyer Sep 10 '08 at 13:40
In Python2.6+ this will be even less error prone with the advent of collection ABCs in the stdlib: docs.python.org/dev/library/… – cdleary Sep 10 '08 at 21:11
vote up 2 vote down

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|flag
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 at 3:35
vote up 0 vote down

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

Your Answer

Get an OpenID
or

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