How can I do the following in a more concise, "pythonic" way:
for element in some_list:
if some_condition:
element.some_attr = some_value
|
How can I do the following in a more concise, "pythonic" way:
|
|||
|
The only thing that's not pythonic in your code is that you're not using 4 spaces for indentation. “Pythonic” doesn't always mean “concise”; for example the following is shorter, but less readable than your loop:
So, stick to the code you have. |
|||
|
|
Not necessarily "more Pythonic" - but more concise. The function call do "any" is just to cause the generator to be consumed - as it is created as a lazy object, and the operations would only be performed when it's elements are fetched. |
|||||
|
|
Your code is ok. May be you can prefer this:
But it does useless assignements... |
|||
|
|
elsestatement assigning to the sameelement.some_attrI would go for ternary operator, that iselement.some_attr = some_value if some_condition else other_value– rplnt Oct 7 '11 at 12:52