Does Python have a ternary conditional operator?

Answer

Yes, it was added in version 2.5. The syntax is:

a if test else b

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'ifTrueelse'false''true'>>>'true'ifFalseelse'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.

All python Questions

Ask your interview questions on python

Write Your comment or Questions if you want the answers on python from python Experts
Name* :
Email Id* :
Mob no* :
Question
Or
Comment* :
 





Disclimer: PCDS.CO.IN not responsible for any content, information, data or any feature of website. If you are using this website then its your own responsibility to understand the content of the website

--------- Tutorials ---