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
| ||||
|
feedback
|
Using the implicit booleanness of the empty list is quite pythonic. | |||||||||||||||||
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:
No:
| |||||||||
feedback
|
|
An empty list is itself considered false in true value testing (see python documentation):
@Daren Thomas
Your duckCollection should implement | ||||
feedback
|
|
I prefer it explicitly:
This way it's 100% clear that | |||
|
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. | |||
|
feedback
|
|
I have seen the below as preferred, as it will catch the null list as well:
| |||||
feedback
|
|
I prefer the following:
Readable and you don't have to worry about calling a function like | |||||||||||
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
returns 1, even though the array has zero elements. The preferred method in that case is to use | |||||||||||||
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. | |||
|
feedback
|