First test is evaluated, then either a or b is returned based on the Boolean 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'
Keep in mind that it's frowned upon by some Pythonistas for:
The order of the arguments is different from many other languages (such as C, Ruby, Java, etc.), which may lead to bugs when people unfamiliar with Python's "surprising" behaviour (they may reverse the order).
Some find it "unwieldy", since it goes against the flow of thought; you think of the condition first and then the effects.
Stylistic reasons.
If you're having trouble remembering the order (as many seem to do), then remember that if you read it out loud, you (almost) say what you mean x = 4 if b > 8 else 9 is read out loud as x will be 4 if b is greater than 8 otherwise 9.
Official documentation:
Conditional expressions
Is there an equivalent of C’s ”?:” ternary operator?
Join MindStick Community
You need to log in or register to vote on answers or questions.
We use cookies to ensure you have the best browsing experience on our website. By using our site, you
acknowledge that you have read and understood our
Cookie Policy &
Privacy Policy.
a if test else bOfficial documentation: