布尔操作符
Posted flameluo
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了布尔操作符相关的知识,希望对你有一定的参考价值。
and 、 or 、not 三个布尔操作符号用于比较布尔值
1.二元布尔操作符
如果两个布尔值都为True, and操作符就将表达式求值为True,否则求值为False;如下:
>>> True and True True >>> True and False False >>>
以下为and的操作符的比较:
表达式 求值 True and True True True and False False False and True False False and False False
or:只要有一个布尔值为真,or操作符就将表达式求值为True,如果都是False,则结果为False;
表达式 求值为 True or True True True or False True False or False True False or False False
2.not操作符
区别:和and和or不同,not操作符只作用域一个布尔值;
not操作符求值为相反的布尔值
>>> not True False >>> not not not not True True
表达式 求值 not True False not False True
待补充~
以上是关于布尔操作符的主要内容,如果未能解决你的问题,请参考以下文章
VSCode自定义代码片段15——git命令操作一个完整流程