Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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 ""
share|improve this question
What does it do? What did you want it to do? If you did a = item in mylist if item is not "" what would you expect a to be? How would you add ()'s to that statement to clarify it? – S.Lott Oct 18 '11 at 21:24

3 Answers

up vote 7 down vote accepted

The following is invalid syntax: print item in mylist if item is not ""

You could perhaps achieve what you want using a list comprehension:

>>> mylist = ["foo","bar","","baz"]
>>> print [item for item in mylist if item]
['foo', 'bar', 'baz']
share|improve this answer
And, in python3, [print(item) for item in mylist if item] is also possible. – wim Oct 19 '11 at 0:26

You could create a generator to grab the items in the list that are not empty.

nonempties = (item for item in mylist if item)

Then loop and print or join them into a string.

print ' '.join(nonempties)
share|improve this answer

The filter() built-in is well suited for exactly that, just pass None instead of a function:

>>> filter(None, ['Abc', '', 'def', None, 'ghi', False, 'jkl'])
['Abc', 'def', 'ghi', 'jkl']

Details at http://docs.python.org/library/functions.html

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.