vote up 9 vote down star
2

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 ;)

flag

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

6 Answers

vote up 26 vote down check

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 b else c

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:

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

Official docs here.

link|flag
1  
Why is this frowned on? – iconoplast Dec 27 '08 at 20:24
1  
The operator itself is not really frowned upon. It's just the form that bugs some people with a C-something background. They where expecting the conditional to be first, but van Rossum chose to put it in the middle. I actually find it cute. ^_^ – efotinis Dec 27 '08 at 23:12
I've found that many Pythonistas really dislike the operator and prefer instead an if-else construct, claiming that the style guide says so. I haven't seen it there though. – Vinko Vrsalovic Dec 29 '08 at 9:13
3  
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 at 13:31
vote up 4 vote down

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|flag
vote up 6 vote down

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

"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|flag
vote up 3 vote down

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|flag
voted up because still not everyone uses python 2.4 – BlackShift May 13 at 13:31
* some people still use 2.4 – BlackShift May 13 at 14:55
vote up 0 vote down

@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|flag

Your Answer

Get an OpenID
or

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