Python 布尔操作符

avatar
作者
筋斗云
阅读量:2

Python 布尔操作符

假设变量 a10b20

运算符布尔表达式描述实例
andx and y布尔与:如果 xFalsex and y 返回 False,否则它返回 y 的计算值。(a and b) 返回 20
orx or y布尔或:如果 x 是非 0,它返回 x 的值,否则它返回 y 的计算值。(a or b) 返回 10
notnot x布尔非:如果 xTrue,返回 False。如果 xFalse,它返回 Truenot (a and b) 返回 False
Microsoft Windows [版本 6.1.7601] 版权所有 (c) 2009 Microsoft Corporation。保留所有权利。  C:\Users\foreverstrong>python Python 3.6.0 (v3.6.0:41df79263a11, Dec 23 2016, 08:06:12) [MSC v.1900 64 bit (AMD64)] on win32 Type "help", "copyright", "credits" or "license" for more information. >>> a = 10 >>> b = 20 >>> a and b 20 >>> >>> a or b 10 >>> >>> not a False >>> >>> not b False >>> >>> not False True >>> >>> not True False >>> >>> c = 0 >>> >>> c or a 10 >>> >>> c or b 20 >>> exit()  C:\Users\foreverstrong> 

References

[1] Yongqiang Cheng, https://yongqiang.blog.csdn.net/

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!