Python 3.8从零开始学
上QQ阅读APP看书,第一时间看更新

2.6.6 逻辑运算符

Python语言支持逻辑运算符,表2-5为逻辑运算符的描述和实例,假设变量a为10,变量b为20。

表2-5 逻辑运算符

下面进行实战。

>>> a=10
>>> b=20
>>> a and b
20
>>> a or b
10
>>> not a
False
>>> not b
False
>>> not -1
False
>>> not False
True
>>> not True
False