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!
|
How can I do the following in Python?
Essentially, (1) replace all the Nones with empty strings, and then (2) carry out a function. Thanks! |
||||
|
|
|
You can totally do that, it's just an ordering issue:
|
|||||||||||||
|
|
One way:
Although then you have:
Or you can use a lambda inline. |
|||||
|
|
Here is another illustrative example:
|
|||
|
|