For example, if passed the following:
a = []
How do I check to see if a is empty?
|
2
|
For example, if passed the following:
How do I check to see if
|
|||
|
|
|
|
Using the implicit booleanness of the empty list is quite pythonic. |
||
|
|
|
I have seen the below as preferred, as it will catch the null list as well:
|
||
|
|
|
An empty list is itself considered false in true value testing (see python documentation):
@Daren Thomas
Your duckCollection should implement |
|||
|
|
|
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:
in a pinch you could also use:
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? |
||||||||
|
|
|
I prefer the following:
Readable and you don't have to worry about calling a function like |
||||||
|
|
|
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:
|
||||||
|
|
|
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. |
||
|
|
|
|
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. |
||
|
|