Does Python have a ternary operator?

I thought I would ask. (:

link|improve this question

12  
Was the official documentation site down? docs.python.org/3.0/reference/…. – S.Lott Dec 27 '08 at 13:39
45  
almost a haiku, though – hop Dec 27 '08 at 14:13
feedback

9 Answers

up vote 245 down vote accepted

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:

a if test else b

First test is evaluated, then either a or b is returned based on the truth value of test; if test evaluates to true a is returned, else b is returned.

For example:

>>> 'true' if True else 'false'
'true'
>>> 'true' if False else 'false'
'false'

Official docs here.

link|improve this answer
37  
Why is this frowned on? – iconoplast Dec 27 '08 at 20:24
32  
I think it is really pythonian, because if you read it out loud, you (almost) say what you mean "x = 4 if b>8 else 9" -> "x will be 4 if b is greater than 8 otherwise 9" – BlackShift May 13 '09 at 13:31
30  
cause it goes against the flow of thoughts. It reads out nice but in your mind, you think of the condition first and then the effects – xster Apr 1 '10 at 2:21
31  
@Xster: No I don't. – Longpoke Jun 15 '10 at 13:43
20  
perhaps it should rather have been: if a then b else c That reads nicely and thinks nicely :) – Herman Schaaf Apr 12 '11 at 22:58
show 6 more comments
feedback

You can index into a tuple:

(falseValue, trueValue)[test]

test needs to return True or false. It might be safer to always implement as:

(falseValue, trueValue)[test == True]
link|improve this answer
2  
voted up because still not everyone uses python 2.4 – BlackShift May 13 '09 at 13:31
4  
* some people still use 2.4 – BlackShift May 13 '09 at 14:55
27  
Note that this one always evaluates everything, whereas the if/else construct only evaluates the winning expression. – SilverbackNet Feb 4 '11 at 2:25
6  
Not very Pythonic, IMHO... – Michael May 3 '11 at 8:14
2  
Uuuuugly. Only "works" because bool is a subclass of int. – wim Dec 15 '11 at 11:05
show 2 more comments
feedback

For versions prior to 2.5, there's the trick:

test and true_value or false_value

This feels more hacky than the new A if B else C syntax mentioned elsewhere, and is generally considered to be a Bad Thing. Although it does have the benefit of evaluating expressions left to right, which is clearer in my opinion.

link|improve this answer
6  
What happens if "true value" evaluates to False (e.g. is None)? – Roberto Liffredo Dec 27 '08 at 17:26
4  
Then you get false_value – recursive Dec 28 '08 at 0:39
6  
The remedy is to use (test and [true_value] or [false_value])[0], which avoids this trap. – ThomasH Oct 21 '09 at 15:33
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

link|improve this answer
feedback

From http://www.python.org/doc/2.5.2/ref/Booleans.html

The expression

x if C else y

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.

link|improve this answer
feedback

expression1 if condition else expression2

>>> a = 1
>>> b = 2
>>> 1 if a > b else -1 
-1
>>> 1 if a > b else -1 if a < b else 0
-1
link|improve this answer
2  
What's the difference between this and the top answer? – KennyTM May 27 '10 at 7:59
4  
This one emphasizes the primary intent of the ternary operator: value selection. It also shows that more than one ternary can be chained together into a single expression. – Roy Tinker Oct 4 '10 at 21:14
feedback

@up:

Unfortunately, the

(falseValue, trueValue)[test]

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

(falseValue, trueValue)[test]()

(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.

link|improve this answer
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 Ж:-)

link|improve this answer
feedback

For Python 2.5 and newer there is a specific syntax:

[on_true] if [cond] else [on_false]

In older Pythons a ternary operator is not implemented but it's possible to simulate it.

cond and on_true or on_false

Though, there is a potential problem, which if cond evaluates to True and on_true evaluates to False then on_false is returned instead of on_true. If you want this behavior the method is OK, otherwise use this:

{True: on_true, False: on_false}[cond is True] # is True, not == True

which can be wrapped by:

def q(cond, on_true, on_false)
    return {True: on_true, False: on_false}[cond is True]

and used this way:

q(cond, on_true, on_false)

It is compatible with all Python versions.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.