Is it possible to have assignment in a condition?
For ex.
if (a=some_func()):
# Use a
|
|
Why not try it out?
So, no. |
|||||||||
|
|
Nope, the BDFL didn't like that feature. From where I sit, Guido van Rossum, "Benevolent Dictator For Life”, has fought hard to keep Python as simple as it can be. We can quibble with some of the decisions he's made -- I'd have preferred he said 'No' more often. But the fact that there hasn't been a committee designing Python, but instead a trusted "advisory board", based largely on merit, filtering through one designer's sensibilities, has produced one hell of a nice language, IMHO. |
|||
|
|
|
http://docs.python.org/tutorial/datastructures.html
also see: http://effbot.org/pyfaq/why-can-t-i-use-an-assignment-in-an-expression.htm |
|||
|
|
|
No. Assignment in Python is a statement, not an expression. |
|||
|
|
|
Not directly, per this old recipe of mine -- but as the recipe says it's easy to build the semantic equivalent, e.g. if you need to transliterate directly from a C-coded reference algorithm (before refactoring to more-idiomatic Python, of course;-). I.e.:
BTW, a very idiomatic Pythonic form for your specific case, if you know exactly what falsish value
so in this specific case the refactoring would be pretty easy;-). If the return could be any kind of falsish value (0,
but you might prefer a simple custom generator:
|
|||
|
|