I was under the impression that Python had a ternary operator...
But then I did some research,
Not enough to find out for sure though
Thought I'd ask the professionals ;)
|
2
|
|||||||
|
|
|
Yes, it has been relatively recently added (in 2.5 IIRC). It's frowned upon by many pythonistas, so use with caution. The syntax is:
First b is evaluated, then either a or c is returned based on the truth value of b; if b evaluates to true a is returned, else c is returned. For example:
Official docs here. |
||||||||||||||
|
|
|
From http://www.python.org/doc/2.5.2/ref/Booleans.html The expression
first evaluates C (not x); if C is true, x is evaluated and its value is returned; otherwise, y is evaluated and its value is returned. New in version 2.5. |
||
|
|
|
|
For versions prior to 2.5, there's the trick:
This feels more hacky than the new |
||||||||
|
|
|
"Dive into Python" the book lays out the trick and its pitfalls very clearly here. It also provides reference for safe implementation of ternary operator in Python here |
||
|
|
|
|
You can index into a tuple:
test needs to return True or false. It might be safer to always implement as:
|
||||
|
|
|
@up: Unfortunately, the
solution don't have short-circuit behaviour, thus both falseValue and trueValue are evaluated regardless of the condition. This could be suboptimal or even buggy (i.e. both trueValue and falseValue could be methods and have side-effects). Some solution to this would be
(execution delayed until the winner is known ;)), but it introduces inconsistency between callable and non-callable objects. In addition, it don't solves the case when using properties. And so the story goes - choosing between 3 mentioned solutions is trade-off between having the short-circuit feature, using at least python2.5 (2.4?) (IMHO no problem any more) and not beeing prone to "trueValue-evaluates-to-false" errors. |
|||
|
|