elliott.david 2008-12-27 08:32 采纳率: 25%
浏览 547
已采纳

是否有一个条件运算符?

If Python does not have a ternary conditional operator, is it possible to simulate one using other language constructs?

转载于:https://stackoverflow.com/questions/394809/does-python-have-a-ternary-conditional-operator

  • 写回答

14条回答 默认 最新

  • MAO-EYE 2015-11-23 18:56
    关注

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

    a if condition else b
    

    First condition is evaluated, then either a or b is returned based on the Boolean value of condition
    If condition evaluates to True a is returned, else b is returned.

    For example:

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

    Note that conditionals are an expression, not a statement. This means you can't use assignments or pass or other statements in a conditional:

    >>> pass if False else x = 3
      File "<stdin>", line 1
        pass if False else x = 3
              ^
    SyntaxError: invalid syntax
    

    In such a case, you have to use a normal if statement instead of a conditional.


    Keep in mind that it's frowned upon by some Pythonistas for several reasons:

    • 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 use it (they may reverse the order).
    • Some find it "unwieldy", since it goes contrary to the normal flow of thought (thinking of the condition first and then the effects).
    • Stylistic reasons.

    If you're having trouble remembering the order, then remember that if you read it out loud, you (almost) say what you mean. For example, x = 4 if b > 8 else 9 is read aloud as x will be 4 if b is greater than 8 otherwise 9.

    Official documentation:

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(13条)

报告相同问题?

悬赏问题

  • ¥15 一道python难题2
  • ¥15 一道python难题
  • ¥15 用matlab 设计一个不动点迭代法求解非线性方程组的代码
  • ¥15 牛顿斯科特系数表表示
  • ¥15 arduino 步进电机
  • ¥20 程序进入HardFault_Handler
  • ¥15 oracle集群安装出bug
  • ¥15 关于#python#的问题:自动化测试
  • ¥20 问题请教!vue项目关于Nginx配置nonce安全策略的问题
  • ¥15 教务系统账号被盗号如何追溯设备