博客
关于我
Python中的逻辑运算符:'and'与'or'的用法
阅读量:427 次
发布时间:2019-03-06

本文共 471 字,大约阅读时间需要 1 分钟。

运算的优先级规则

在编程和逻辑运算中,运算的优先级遵循以下顺序:

高于不操作(not)> 与(and)> 或(or)

'and' 运算符规则

  • 真与真:只有当两边都为真时,才返回'and'后面的内容。
  • 假与假:当两边都为假时,返回'and'前面的内容。
  • 真与假:当一边为真,另一边为假时,返回代表假的内容。

'or' 运算符规则

  • 真与假:只要有一个为真,整个'or'表达式返回真,并选择代表真内容。
  • 假与假:当两边都为假时,返回'or'后面的内容。
  • 真与真:当两边都为真时,返回'or'前面的内容。

逻辑短路

  • True 或表达式:如果左边是True,那么无论右边是什么结果,整个表达式都会返回True。
  • False and 表达式:如果左边是False,那么无论右边是什么结果,整个表达式都会返回False。
  • 布尔值为假的十种情况

  • False
  • 0
  • 0.0
  • False
  • ""(空字符串)
  • ()`
  • []
  • set()(空集合)
  • {}(空字典)
  • 0j(纯虚数零)
  • None
  • 通过以上规则,我们可以更好地理解和处理逻辑运算,避免在实际编程中出现逻辑错误。

    转载地址:http://mknuz.baihongyu.com/

    你可能感兴趣的文章
    thinkphp 常用SQL执行语句总结
    查看>>
    Oracle:ORA-00911: 无效字符
    查看>>
    Text-to-Image with Diffusion models的巅峰之作:深入解读 DALL·E 2
    查看>>
    TCP基本入门-简单认识一下什么是TCP
    查看>>
    tableviewcell 中使用autolayout自适应高度
    查看>>
    Orcale表被锁
    查看>>
    svn访问报错500
    查看>>
    org.apache.ibatis.exceptions.TooManyResultsException: Expected one result (or null) to be returned
    查看>>
    org.apache.ibatis.type.TypeException: Could not resolve type alias 'xxxx'异常
    查看>>
    org.apache.poi.hssf.util.Region
    查看>>
    org.apache.xmlbeans.XmlOptions.setEntityExpansionLimit(I)Lorg/apache/xmlbeans/XmlOptions;
    查看>>
    org.apache.zookeeper.KeeperException$ConnectionLossException: KeeperErrorCode = ConnectionLoss for /
    查看>>
    org.hibernate.HibernateException: Unable to get the default Bean Validation factory
    查看>>
    org.hibernate.ObjectNotFoundException: No row with the given identifier exists:
    查看>>
    org.springframework.orm.hibernate3.support.OpenSessionInViewFilter
    查看>>
    org.springframework.orm.hibernate3.support.OpenSessionInViewFilter
    查看>>
    org.springframework.web.multipart.MaxUploadSizeExceededException: Maximum upload size exceeded
    查看>>
    org.tinygroup.serviceprocessor-服务处理器
    查看>>
    org/eclipse/jetty/server/Connector : Unsupported major.minor version 52.0
    查看>>
    org/hibernate/validator/internal/engine
    查看>>