How to check is the array is not empty? I did this:
if not self.table[5] is None:
Is this the right way?
Thanks
|
How to check is the array is not empty? I did this:
Is this the right way? Thanks |
|||
|
with
(in Python, objects like |
||||
|
|
|
If by array you mean list, then if you treat a list as a boolean it will yield True if it has items and False if it's empty.
|
|||||||
|
|
The usual method is to use the
|
|||
|
|
bool([]) == bool(array([])), butbool([0]) != bool(array([0])). – endolith Jan 5 at 19:44