and和or运算

Posted wgbo

tags:

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

  and和or的运算,从前向后按顺序计算,当True结果遇到or就停止,返回True;当False结果遇到and就停止,返回False;False遇到or,继续走;True遇到and,继续走。

>>> 3 > 2 and 9 > 2 or 7< 9 and 2 < 10    # (3 > 2 and 9 > 2)是True,遇到or后就会直接返回True,or后的表达式不再执行
True

>>> 3 > 2 and 2 < 5 or 7< 9 and 2 < 10    # (3 > 2 and 2 > 5)是False,遇到or后就会继续向下执行,or后的表达式为True,返回True
True

>>> 3 < 2 or 2 > 5 and 7< 9 and 2 < 10    # (3 < 2 or 2 > 5)是False,遇到and后就会直接返回False,and后的表达式不再执行
False

>>> 3 < 2 or 2 < 5 and 7< 9 or 2 < 10 and 10 > 1    # (3 < 2 or 2 < 5)是True,遇到and后就会继续向下执行,遇到or返回True,or后表达式为True,遇到and,继续执行,and后为True,最终返回True
True

  总结:and和or没有谁先执行或谁后执行,只会按顺序向下执行。

以上是关于and和or运算的主要内容,如果未能解决你的问题,请参考以下文章

SQL And & Or 运算符

python中and、or和not 三个逻辑运算符,一直理解不了,求帮助!

Python3逻辑运算符not?

SQL AND & OR 运算符

PHP 运算符 if 语句 'and' 和 'or'

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