Python中 and or 运算顺序详解 --- 短路逻辑

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python中 and or 运算顺序详解 --- 短路逻辑相关的知识,希望对你有一定的参考价值。

核心思想

表达式从左至右运算,若 or 的左侧逻辑值为 True ,则短路 or 后所有的表达式(不管是 and 还是 or),直接输出 or 左侧表达式 。

表达式从左至右运算,若 and 的左侧逻辑值为 False ,则短路其后所有 and 表达式,直到有 or 出现,输出 and 左侧表达式到 or 的左侧,参与接下来的逻辑运算。

若 or 的左侧为 False ,或者 and 的左侧为 True 则不能使用短路逻辑。

 

 

详情参见:http://www.cnblogs.com/an9wer/p/5475551.html

 

以上是关于Python中 and or 运算顺序详解 --- 短路逻辑的主要内容,如果未能解决你的问题,请参考以下文章

Python逻辑运算符and?

python-逻辑运算:not\and\or和布尔值:True\False

php判断$1 or $j and $z 顺序

Python 运算符练习 not and or

python运算符详解

Python入门8 —— 逻辑运算符补充