For example, if passed the following:
a = []
How do I check to see if a is empty?
|
For example, if passed the following:
How do I check to see if |
||||
|
|
Using the implicit booleanness of the empty list is quite pythonic. |
|||||||||||||||||||||
|
|
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:
No:
|
|||||||||||||||||
|
|
I prefer it explicitly:
This way it's 100% clear that |
|||||||||||
|
|
An empty list is itself considered false in true value testing (see python documentation):
@Daren Thomas
Your duckCollection should implement |
||||
|
|
JavaScript has a similar notion of truthy/falsy. |
|||||||
|
|
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
returns 1, even though the array has zero elements. The preferred method in that case is to use |
|||||||||||||||
|
|
I had written:
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
the first test is in response to @Mike's answer, above. The third line could also be replaced with:
if you only want to accept instances of particular types (and their subtypes), or with:
You can get away without the explicit type check, but only if the surrounding context already assures you that |
||||
|
|
|
Python is very uniform about the treatment of emptiness. Given the following:
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. |
|||
|
|
|
I have seen the below as preferred, as it will catch the null list as well:
|
|||||
|
|
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. |
|||
|
|
|
I prefer the following:
Readable and you don't have to worry about calling a function like |
|||||||||||||||||||||
|
|
An empty list is not False: http://stackoverflow.com/a/11732347/818634
|
|||||||||
|
|
In python for checking length method
Above code is as faster as len() function. |
|||||||||
|
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.