Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

how to use list compression with conditional formatting

# You can totally do that. It's just an ordering issue:

[unicode(x.strip()) if x is not None else '' for x in row]
# In general,

[f(x) if condition else g(x) for x in sequence]
# And, for list comprehensions with if conditions only,

[f(x) for x in sequence if condition]
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #list #compression #conditional #formatting
ADD COMMENT
Topic
Name
1+3 =