Python中的布尔运算符是什么?

逻辑运算符和(或)和非逻辑运算符也称为布尔运算符。和或或运算符需要两个操作数,它们的运算结果可能为true或false,而运算符则不需要一个运算数的结果为true或false。

如果两个操作数都返回true,则Boolean和operator返回true。

>>> a=50

>>> b=25

>>> a>40 and b>40

False

>>> a>100 and b<50

False

>>> a==0 and b==0

False

>>> a>0 and b>0

True

如果任一操作数为true,则布尔值或运算符返回true

>>> a=50

>>> b=25

>>> a>40 or b>40

True

>>> a>100 or b<50

True

>>> a==0 or b==0

False

>>> a>0 or b>0

True

not运算符的操作数为假表达式则返回true,否则为false。

>>> a=10

>>> a>10

False

>>> not(a>10)

True

以上是 Python中的布尔运算符是什么? 的全部内容, 来源链接: utcz.com/z/345455.html

回到顶部