1.“布尔”数据类型只有两种值:True 和False。
2.比较操作符== 等于,!= 不等于,< 小于,> 大于,<= 小于等于,>= 大于等于,比较两个值,求值为一个布尔值。
>>> 42 == 42
True
3.布尔操作符
(1)二元布尔操作符
and 和or 操作符总是接受两个布尔值(或表达式),所以它们被认为是“二元”操作符。如果两个布尔值都为True,and 操作符就将表达式求值为True,否则求值为False。另一方面,只要有一个布尔值为真,or 操作符就将表达式求值为True。如果都是False,所求值为False。
>>> True and True
True
>>> True and False
False
(2)not 操作符
ot 操作符只作用于一个布尔值(或表达式),not 操作符求值为相反的布尔值。
>>> not True
False
(3)混合布尔和比较操作符
>>> (4 < 5) and (5 < 6)
True
>>> (4 < 5) and (9 < 6)
False
来源:CSDN
作者:nee~
链接:https://blog.csdn.net/guo_qingxia/article/details/103478921