美文网首页
Python中的逻辑运算符:not,and,or的优先级

Python中的逻辑运算符:not,and,or的优先级

作者: W撒哈拉的沙W | 来源:发表于2020-08-27 10:55 被阅读0次

    1、and为且,and两边的变量都是true的时候结果是true

    如:1)5>3 and 4>2     True

           2)5>3 and 4<2     False

    and

    2、or为或,有一个是true的时候结果即为true

    如:1)5>3 or 4>2     True

            2) 5>3 or 4<2      True

    or

    3、not取反.

    如:1)not 5>3     False

           2)not  5<3     True

    not

    4、当not和and及or在一起运算时,优先级为是 not > and > or.

    not > and > or

    如果有括号,括号的优先级最高,先运算括号中的结果。

    相关文章

      网友评论

          本文标题:Python中的逻辑运算符:not,and,or的优先级

          本文链接:https://www.haomeiwen.com/subject/kwccsktx.html