Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Possible Duplicate:
Python Ternary Operator

I'm just getting into Python and I really like the terseness of the syntax. However; is there an easier way of writing an if-then statement so it fits on one line?

For example; say I have the simple test:

if count == N:
    count = 0
else:
    count = N + 1

is there a simpler way of writing this? I mean, in Objective-C I would write this as:

count = count == N ? 0 : count + 1;

Is there something similar for python?

Edit

I know that in this instance I can use count == (count + 1) % N. I'm asking about the general syntax.

share|improve this question
3  
Did you mean: count = count == N ? 0 : count + 1; – Charles Beattie May 10 '10 at 13:15
Yes. That'll teach me to ask questions of the top of my head. – Abizern May 10 '10 at 13:21
there is at least a dozen duplicates for this question on SO... 1947030, 394809, 643983,… – hop May 10 '10 at 13:37
3  
Readability is always more important. Terse is only a virtue when it aids in readability, and not when it detracts from overall readability. – Warren P May 10 '10 at 14:04

marked as duplicate by Chris, Wooble, George Stocker Jul 18 '12 at 2:26

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

6 Answers

up vote 71 down vote accepted

That's more specifically a ternary operator expression than an if-then, here's the python syntax

value_when_true if condition else value_when_false

Better Example: (thanks Mr. Burns)

'Yes' if fruit == 'Apple' else 'No'

share|improve this answer
5  
Better Example: 'Yes' if fruit == 'Apple' else 'No' – Joshua Burns Jul 16 '12 at 21:29
1  
Thanks, I should have been more concrete. Added to Answer. – cmsjr Jul 19 '12 at 0:01
count = 0 if count == N else N+1

- the ternary operator. Although I'd say your solution is more readable than this.

share|improve this answer
4  
@THC4k: Why the parentheses? They don't appear to be necessary and are not mentioned in PEP-308 or the docs (docs.python.org/reference/…) – Tim Pietzcker May 10 '10 at 13:26
Yeah, they are not necessary. Not sure where I picked up the habit - I thought it was suggested in PEP8, but I can't find it. – Jochen Ritzel May 10 '10 at 16:07
OK, then I'll remove them again :) – Tim Pietzcker May 10 '10 at 17:42
I didn't just add parentheses, read the edit again. What you have now is a syntax error! You cannot assign in the statement, only this is valid: count = 0 if count == N else N+1. That's what the parentheses were supposed to tell you! – Jochen Ritzel May 10 '10 at 20:22
Ahh. Sorry - now I see it. :) Thanks! – Tim Pietzcker May 10 '10 at 20:39

General ternary syntax:

value_true if <test> else value_false

Another way can be:

[value_false, value_true][<test>]

e.g:

count = [0,N+1][count==N]
share|improve this answer
This counts on an implementation detail that (False, True) == (0, 1) which I don't know is guaranteed (but didn't check). And though terse, it isn't going to win any readability awards. You can also do "abcdefg"[i] in C, but it doesn't mean you should. – msw May 10 '10 at 15:27
@msw: It's guaranteed that False == 0 and True == 1: no implementation detail here. :) See the 'Booleans' heading under docs.python.org/reference/… – Mark Dickinson May 10 '10 at 16:13
3  
But aren't both values computed, no matter what [<test>] is? – tstenner May 10 '10 at 17:46
@msw: well, when it comes to ternary operations, I always prefer the first one. I just showed another possible way... – mshsayem May 11 '10 at 8:34
<execute-test-successful-condition> if <test> else <execute-test-fail-condition>

with your code-snippet it would become,

count = 0 if count == N else N + 1
share|improve this answer

Moreover, you can still use the "ordinary" if syntax and conflate it into one line with the colon.

if i > 3: print("We are done.")

or

field_plural = None
if field_plural is not None: print("insert into testtable(plural) '{0}'".format(field_plural)) 
share|improve this answer
count = count == N ? 0 : count + 1;

Please don't do that; the next programmer to have to read your code will have a much harder time of it. "More space on screen" isn't the evil to avoid; "more time to read and understand" is the evil you should try to stomp out.

share|improve this answer
1  
Where is your answer? – danielrvt Mar 9 at 15:46

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