Does Python have a ternary operator?
I thought I would ask. (:
|
Does Python have a ternary operator? I thought I would ask. (:
| |||||||||
feedback
|
|
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 test is evaluated, then either a or b is returned based on the truth value of For example:
Official docs here. | |||||||||||||||||||||
feedback
|
|
You can index into a tuple:
test needs to return True or false. It might be safer to always implement as:
| |||||||||||||||||||||
feedback
|
|
For versions prior to 2.5, there's the trick:
This feels more hacky than the new | |||||||||||||
feedback
|
|
"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 | ||||
|
feedback
|
|
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. | |||
|
feedback
|
|
expression1 if condition else expression2
| |||||||||
feedback
|
|
@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. | ||||
|
feedback
|
|
Though Pythons older than 2.5 are slowly drifting to history, here is a list of old pre-2.5 ternary operator tricks: "Python Idioms", search for the text 'Conditional expression' . Wikipedia is also quite helpful Ж:-) | |||
|
feedback
|
|
For Python 2.5 and newer there is a specific syntax:
In older Pythons a ternary operator is not implemented but it's possible to simulate it.
Though, there is a potential problem, which if
which can be wrapped by:
and used this way:
It is compatible with all Python versions. | ||||
|
feedback
|