This question already has an answer here:
The API I'm working with can return empty [] lists.
What isn't working:
if myList is not None: #not working
if myList is not []: #not working
What will work?
|
This question already has an answer here: The API I'm working with can return empty What isn't working:
What will work? |
|||
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
|||
|
I like Zarembisty's answer. Although, if you want to be more explicit, you can always do:
|
|||||||
|
!=instead ofis notwould have made this work, though theif myListform is preferred. – Mike Graham May 5 '10 at 3:13