速记布尔值
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了速记布尔值相关的知识,希望对你有一定的参考价值。
在python中。布尔值有 Ture False 两种。Ture等于对,False等于错。要注意在python中对字母的大小写要求非常严格。 Ture 和 False 的首字母都要大写。
而布尔值可以互相运算,用 and not or (全部小写)来运算。
and 是与运算,
1 >>> Ture and Ture 2 Ture 3 >>> False and Ture 4 False 5 >>> False and False 6 False
在 and 运算中,只有全部为 Ture 时结果才为 Ture 。反之为 False 。
or 是或运算,
1 >>> Ture or Ture 2 Ture 3 >>> Ture or False 4 Ture 5 >>> False or False 6 False
在 or 运算中,只要有一个是 Ture 那么结果就为 Ture 。
not 运算是非运算,
1 >>> not Ture 2 False 3 >>> not False 4 Ture 5 >>> not 1<2 6 Ture
非运算是单目运算符,顾名思义将 Ture 和 False 互相转换。
以上是关于速记布尔值的主要内容,如果未能解决你的问题,请参考以下文章