I have a list like
l = []
How do I check if l[i] is empty?
l[i] = ''
and
l[i] = ""
dont't work.
|
Try:
Or:
|
|||
|
|
|
If you want to know if list element at index
If you are looking for something like what is a NULL-Pointer or a NULL-Reference in other languages, Python offers you
|
|||
|
|
|
Unlike in some laguages, To do an equality check, you usually use either the
Here's a link to the |
|||||||||||||||
|
|
Just check if that element is equal to None type or make use of of NOT operator ,which is equivalent to the NULL type you observe in other languages.
Anyway if you know the size of your list then you don't need to do all this. |
|||
|
|
len(l) == 0). Consider this would be true:l = [""]; l[0] == ""as wouldl = [None]; l[0] is None. Now, what's the goal/intent? :) – user166390 Dec 7 '11 at 7:40l[0] == ""– rossipedia Dec 7 '11 at 7:42if len(l[i])==0?? – bdhar Dec 7 '11 at 7:53