vote up 5 vote down star

Is there a way to write this C/C++ code in Python? a = (b == true ? "123" : "456" )

Thanks so much!

flag

75% accept rate
It's called a ternary-if, by the way. en.wikipedia.org/wiki/%3F:, en.wikipedia.org/wiki/Ternary_operation – GMan Nov 6 at 9:16
... or "conditional expression" – Oren S Nov 6 at 11:27

2 Answers

vote up 20 vote down check
a = '123' if b else '456'
link|flag
3  
This ternary operator was introduced in Python 2.5. – Dave Webb Nov 6 at 9:19
thanks! exactly what i was looking for. couldn't find it on the python docs website. – huy Nov 6 at 9:21
For future reference, here's the Python documentation for the conditional expression: docs.python.org/reference/… – Greg Hewgill Nov 6 at 9:25
vote up 2 vote down

see here for more info

link|flag

Your Answer

Get an OpenID
or

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