我们如何在没有 else 的情况下使用 Python 三元运算符?
如果你想转换像这样的语句 -
if <condition>:<some-code>
到单行,您可以使用单行 if 语法来这样做 -
if <condition>: <some-code>
另一种方法是利用短路和运算符,例如 -
<condition> and <some-code>
如果 <condition> 为 false,则短路将开始,并且不会评估右侧。如果 <condition> 为真,则将评估右侧并评估 <some-code>。
以上是 我们如何在没有 else 的情况下使用 Python 三元运算符? 的全部内容, 来源链接: utcz.com/z/361274.html