码迷,mamicode.com
首页 > 其他好文 > 详细

Boolean Operations -- and, or, not

时间:2019-02-10 13:45:06      阅读:218      评论:0      收藏:0      [点我收藏+]

标签:erro   运算符   boolean   image   排序   测试   图片   str   布尔   

技术图片

 


 

  • Boolean Operations -- and, or, not
    • 布尔运算操作,优先级按升序排序:
      • x or y                 如果x为假,那么y,否则x                         短路运算符,只有当参数x为False,才计算参数y
      • x and y              如果x为假,则x,否则y                             短路运算符,只有当参数x为True,才计算参数y
      • not x                 如果x为假,那么True,否则False             not的优先级低于非布尔运算符,如 not a == b,实际上是 not (a == b);因此 a == not b 语法错误

 

 

# 测试“not”与“==”的优先级
x = 1
y = 0

try:
    if x == not y:
        print("this priority is : x == (not y)")
except  SyntaxError as err:
    print(err)

 

Boolean Operations -- and, or, not

标签:erro   运算符   boolean   image   排序   测试   图片   str   布尔   

原文地址:https://www.cnblogs.com/ShuComputerProgram/p/10359106.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!