I'm trying to print out just the non-empty strings in a list. I can't seem to get the below to work, what am I doing wrong??
print item in mylist if item is not ""
|
I'm trying to print out just the non-empty strings in a list. I can't seem to get the below to work, what am I doing wrong??
|
|||
|
The following is invalid syntax: You could perhaps achieve what you want using a list comprehension:
|
|||
|
|
You could create a generator to grab the items in the list that are not empty.
Then loop and print or join them into a string.
|
||||
|
|
|
The
|
|||
|
|
a = item in mylist if item is not ""what would you expectato be? How would you add()'s to that statement to clarify it? – S.Lott Oct 18 '11 at 21:24