Python 简明教程
Python - Logical Operators
Python Logical Operators
Python 逻辑运算符用于形成复合布尔表达式。这些逻辑运算符的每个操作数本身都是布尔表达式。例如,
Example
age > 16 and marks > 80
percentage < 50 or attendance < 75
除了关键字 False,Python 将所有类型的数字零、空序列( strings 、 tuples 、 lists )、空 dictionaries 和空 sets 解释为 False。所有其他值都视为 True。
Python 中有三个逻辑运算符。它们是 “ and ”、“ or ”和“ not ”。它们必须是小写。
How the Python interpreter evaluates the logical operators?
表达式 "x and y" 首先评估 "x"。若 "x" 为 false,则返回其值;否则,评估 "y" 并返回所产生的值。
表达式 "x or y" 首先评估 "x";若 "x" 为 true,则返回其值;否则,评估 "y" 并返回所产生的值。
Python Logical Operators Examples
下面给出逻辑运算符的几个用例 -
Example 1: Logical Operators With Boolean Conditions
x = 10
y = 20
print("x > 0 and x < 10:",x > 0 and x < 10)
print("x > 0 and y > 10:",x > 0 and y > 10)
print("x > 10 or y > 10:",x > 10 or y > 10)
print("x%2 == 0 and y%2 == 0:",x%2 == 0 and y%2 == 0)
print ("not (x+y>15):", not (x+y)>15)
它将生成以下 output −
x > 0 and x < 10: False
x > 0 and y > 10: True
x > 10 or y > 10: True
x%2 == 0 and y%2 == 0: True
not (x+y>15): False
Example 2: Logical Operators With Non- Boolean Conditions
我们可以对逻辑运算符使用非布尔操作数。在此,我们需要注意到任何非零数字和非空序列都会被评估为 True。因此,会应用逻辑运算符的相同真值表。
在以下示例中,数字操作数用于逻辑运算符。 variables "x"、"y" 评估为 True,"z" 为 False
x = 10
y = 20
z = 0
print("x and y:",x and y)
print("x or y:",x or y)
print("z or x:",z or x)
print("y or z:", y or z)
它将生成以下 output −
x and y: 20
x or y: 10
z or x: 10
y or z: 20