用Python链接比较运算符

有时我们需要在一个语句中使用多个条件检查。这些检查的一些基本语法是x <y <z,或者x <y和x <z等。

与其他语言一样,Python中也有一些基本的比较运算符。这些比较运算符是<,<=,>,> =,==,!=,is,is,in,not in。

这些运算符的优先级相同,并且优先级小于算术,按位和移位运算符。

这些运算符可以任意排列。它们将用作链。因此,例如,如果表达式为x <y <z,则它类似于x <y和y <z。因此,从此示例中,我们可以看到操作数是否为p 1,p 2,...,p n,而运算符为OP 1,OP 2,...,OP n-1,则其与p 1 OP 1 p 2和p 2 OP 2 p 3,,p n-1 OP n-1 p n

因此,有一些比较运算符的链接功能示例。

范例程式码

a = 10
b = 20
c = 5
# c < a < b is same as c <a and a < b
print(c < a)
print(a < b)
print(c < a < b)
# b is not in between 40 and 60
print(40 <= b <= 60)
# a is 10, which is greater than c
print(a == 10 > c)

输出结果

True
True
True
False
True

范例程式码

u = 5
v = 10
w = 15
x = 0
y = 7
z = 15
# The w is same as z but not same as v, v is greater than x, which is less than y
print(z is w is not v > x < y)
# Check whether w and z are same and x < z > y or not
print(x < w == z > y)

输出结果

True
True