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

I am getting new_tag from a form text field with self.response.get("new_tag") and selected_tags from checkbox fields with self.response.get_all("selected_tags").

I combine them like this:

tag_string = new_tag
new_tag_list = f1.striplist(tag_string.split(",") + selected_tags)

(f1.striplist is a function that strips white spaces inside the strings in the list.)

But in the case that tag_list is empty (no new tags are entered) but there are some selected_tags, new_tag_list contains an empty string " ".

For example, from logging.info:

***new_tag***
***selected_tags***[u'Hello', u'Cool', u'Glam']
***new_tag_list***[u'', u'Hello', u'Cool', u'Glam']

How do I get rid of the empty string?

If there is an empty string in the list:

>>> s = [u'', u'Hello', u'Cool', u'Glam']
>>> i = s.index("")
>>> del s[i]
>>> s
[u'Hello', u'Cool', u'Glam']

But if there is no empty string:

>>> s = [u'Hello', u'Cool', u'Glam']
>>> if s.index(""):
        i = s.index("")
        del s[i]
    else:
    print "new_tag_list has no empty string"

But this gives:

Traceback (most recent call last):
  File "<pyshell#30>", line 1, in <module>
    if new_tag_list.index(""):
    ValueError: list.index(x): x not in list

Why is this? And what do you suggest as a solution? Thanks!

share|improve this question

4 Answers

up vote 26 down vote accepted

Almost-English style:

if thing in some_list: some_list.remove(thing)

Duck-typed, EAFP style:

try:
    some_list.remove(thing)
except ValueError:
    pass # or scream: thing not in some_list!
except AttributeError:
    pass # call security, some_list not quacking like a list!

Functional style:

is_not_thing = lambda x: x is not thing
cleaned_list = filter(is_not_thing, some_list)

Same as before with shortcut if bool(thing) evals to False:

# in fact will remove every element that evals to False in Boolean
# context like zero, empty strings or empty lists
cleaned_list = filter(bool, some_list)

List comprehension (mathematical English) style:

cleaned_list = [ x for x in some_list if x is not thing ]

Note for critics of methods implying a list copy:

  1. contrary to popular belief, generator expressions are not always more efficient than list comprehensions
  2. profile before complaining
share|improve this answer
Thanks! This works great. Where can I read more about this? – Zeynel Feb 6 '11 at 20:56
1  
try:
    s.remove("")
except ValueError:
    print "new_tag_list has no empty string"

Note that this will only remove one instance of the empty string from your list (as your code would have, too). Can your list contain more than one?

share|improve this answer

If index doesn't find the searched string, it throws the ValueError you're seeing. Either catch the ValueError:

try:
    i = s.index("")
    del s[i]
except ValueError:
    print "new_tag_list has no empty string"

or use find, which returns -1 in that case.

i = s.find("")
if i >= 0:
    del s[i]
else:
    print "new_tag_list has no empty string"
share|improve this answer
Is find() a list attribute? I am getting: >>> s [u'Hello', u'Cool', u'Glam'] >>> i = s.find("") Traceback (most recent call last): File "<pyshell#42>", line 1, in <module> i = s.find("") AttributeError: 'list' object has no attribute 'find' – Zeynel Feb 6 '11 at 20:48
1  
Time Pietscker's remove() approach is much more direct: it directly shows what the code is meant to do (there is indeed no need for an intermediate index i). – EOL Feb 6 '11 at 21:19
1  
@Zeynel no, it should be in every Python, see docs.python.org/library/string.html#string.find . But as EOL pointed out, simply using remove is waaay better. – phihag Feb 6 '11 at 21:53

Eek, don't do anything that complicated : )

Just filter() your tags. bool() returns False for empty strings, so instead of

new_tag_list = f1.striplist(tag_string.split(",") + selected_tags)

you should write

new_tag_list = filter(bool, f1.striplist(tag_string.split(",") + selected_tags))

or better yet, put this logic inside striplist() so that it doesn't return empty strings in the first place.

share|improve this answer
Thanks! All good answers but I think I will be using this. This is my striplist function, how do I incorporate your solution: def striplist(l): """strips whitespaces from strings in a list l""" return([x.strip() for x in l]) – Zeynel Feb 6 '11 at 21:10
1  
@Zeynel: sure. You could either put a test inside your list comprehension like this: [x.strip() for x in l if x.strip()] or use Python's built-in map and filter functions like this: filter(bool, map(str.strip, l)). If you want to test it out, evaluate this in the interactive interpreter: filter(bool, map(str.strip, [' a', 'b ', ' c ', '', ' '])). – dfichter Feb 6 '11 at 21:43

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.