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

How can I do the following in Python?

    row = [unicode(x.strip()) for x in row if x is not None else '']

Essentially, (1) replace all the Nones with empty strings, and then (2) carry out a function.

Thanks!

share|improve this question

3 Answers

up vote 76 down vote accepted

You can totally do that, it's just an ordering issue:

[ unicode(x.strip()) if x is not None else '' for x in row ]
share|improve this answer
21  
Note that the if/else here is now "ternary operator" syntax and not list comprehension syntax. – Adam Vandenberg Nov 23 '10 at 20:04
1  
Given OP's previous question, @Adam's remark is very important! – delnan Nov 23 '10 at 20:06
4  
That's why I prefer to put the ternary operator in brackets, it makes it clearer that it's just a normal expression, not a comprehension. – Jochen Ritzel Nov 23 '10 at 20:16

One way:

def change(f):
    if f is None:
        return unicode(f.strip())
    else:
        return ''

row = [change(x) for x in row]

Although then you have:

row = map(change, row)

Or you can use a lambda inline.

share|improve this answer
1  
This is also a good (maybe only) technique to use when you have to handle possible exceptions from the if expression or code in its or the elses statement block. The accepted answer is better for simple cases. – martineau Nov 23 '10 at 21:05

Here is another illustrative example:

>>> print(", ".join(["ha" if i else "Ha" for i in range(3)]) + "!")
Ha, ha, ha!
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.