zoukankan      html  css  js  c++  java
  • python中的not,and, or

    not 表示  非,and 表示 与 ,or 表示 或 ,他们的优先级 not > and > or 

    在python中 都是从左到右去判断条件的,例如and ,True and True 或 True and False 先判断左边的条件是否为真

    接下来判断右边的条件是否为真,若右边也为真则完成判断返回右边的结果,若右边条件为假则返回右边的假值的结果;

    False and True 或 False and False,左边的条件为假,则不判断右边条件直接返回左边假值的结果

     

    例如 or ,True or True 或 True or False 先判断左边的条件是否为真,若左边条件为真,则不判断右边条件直接返回左边真值的结果

    False and True 或 False and False 先判断左边的条件,若为假则继续判断右边的条件,若右边的条件为真则返回右边

    真值的结果,若右边条件为假则返回右边假值的结果

    加粗黑体为正确答案

    1.判断下列逻辑语句的True,False.

     1)1 > 1 or 3 < 4 or 4 > 5 and 2 > 1 and 9 > 8 or 7 < 6  True

     2)not 2 > 1 and 3 < 4 or 4 > 5 and 2 > 1 and 9 > 8 or 7 < 6 Flase

     

    2.求出下列逻辑语句的值。

    1),8 or 3 and 4 or 2 and 0 or 9 and 7    8

    2),0 or 2 and 3 and 4 or 6 and 0 or 3    4

     

    3.下列结果是什么?

    1)、6 or 2 > 1       6

    2)、3 or 2 > 1       3

    3)、0 or 5 < 4       False

    4)、5 < 4 or 3       3

    5)、2 > 1 or 6       True

    6)、3 and 2 > 1      True

    7)、0 and 3 > 1      0

    8)、2 > 1 and 3      3

    9)、3 > 1 and 0      0

    10)、3 > 1 and 2 or 2 < 3 and 3 and 4 or 3 > 2     2

     

  • 相关阅读:
    swagger本地环境搭建
    上传图片报错
    接口自动化测试---环境搭建
    IDEA 运行程序提交hdfs时,报错
    hadoop2.60集群搭建
    查找排除当前最大、最小salary之后的员工的平均工资avg_salary。
    按照salary的累计和running_total,其中running_total为前两个员工的salary累计和
    CSS补充
    BFC(块级格式化上下文)
    CSS精灵技术
  • 原文地址:https://www.cnblogs.com/chen55555/p/10151909.html
Copyright © 2011-2022 走看看