python and or not 优先级

Posted xiaoxuesheng993

tags:

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

not > and >or

1 or 5 and 4: -> 1 or 4-> 1

(1 or 5) and 4: ->1 and 4 ->4

x or y . x为真就是x, x为假就是y
x and y . x为真就是y, x为假就是x

以上是关于python and or not 优先级的主要内容,如果未能解决你的问题,请参考以下文章

python基础语法之and,or,not

python基础知识整理

Python3逻辑运算符not?

Python not and or

Python中notandor的优先级

Python中的逻辑运算