Python - 比较运算符


Python 中的比较运算符在 Python 的条件语句(if、elseelif)和循环语句( while 和 for 循环)中非常重要。比较运算符也称为关系运算符。一些众所周知的运算符是“<”代表小于,“>”代表大于运算符。

Python 使用另外两个运算符,将“=”符号与这两个运算符结合起来。“<=”符号用于小于或等于运算符,“">=”符号用于大于或等于运算符。

Python 还有两个比较运算符,形式为“==”和“!=”。它们是等于不等于运算符。因此,Python 中有六个比较运算符,下表列出了它们:

< 少于 a<b
> 比...更棒 a>b
<= 小于或等于 a<=b
>= 大于或等于 a>=b
== 等于 a==b
!= 不等于 a!=b

比较运算符本质上是二元的,需要两个操作数。涉及比较运算符的表达式称为布尔表达式,并且始终返回 True 或 False。

a=5
b=7
print (a>b)
print (a<b)

它将产生以下输出-

False
True

两个操作数都可以是 Python 文字、变量或表达式。由于Python支持混合算术,因此您可以拥有任何数字类型的操作数。

以下代码演示了 Python 的比较运算符与整数的使用-

print ("Both operands are integer")
a=5
b=7
print ("a=",a, "b=",b, "a>b is", a>b)
print ("a=",a, "b=",b,"a<b is",a<b)
print ("a=",a, "b=",b,"a==b is",a==b)
print ("a=",a, "b=",b,"a!=b is",a!=b)

它将产生以下输出-

Both operands are integer
a= 5 b= 7 a>b is False
a= 5 b= 7 a<b is True
a= 5 b= 7 a==b is False
a= 5 b= 7 a!=b is True

浮点数比较

在以下示例中,比较了整数和浮点操作数。

print ("comparison of int and float")
a=10
b=10.0
print ("a=",a, "b=",b, "a>b is", a>b)
print ("a=",a, "b=",b,"a<b is",a<b)
print ("a=",a, "b=",b,"a==b is",a==b)
print ("a=",a, "b=",b,"a!=b is",a!=b)

它将产生以下输出-

comparison of int and float
a= 10 b= 10.0 a>b is False
a= 10 b= 10.0 a<b is False
a= 10 b= 10.0 a==b is True
a= 10 b= 10.0 a!=b is False

复数的比较

尽管复杂对象是Python中的数字数据类型,但其Behave与其他数据类型不同。Python 不支持 < 和 > 运算符,但它支持相等 (==) 和不等 (!=) 运算符。

print ("comparison of complex numbers")
a=10+1j
b=10.-1j
print ("a=",a, "b=",b,"a==b is",a==b)
print ("a=",a, "b=",b,"a!=b is",a!=b)

它将产生以下输出-

comparison of complex numbers
a= (10+1j) b= (10-1j) a==b is False
a= (10+1j) b= (10-1j) a!=b is True

您会收到带有小于或大于运算符的类型错误。

print ("comparison of complex numbers")
a=10+1j
b=10.-1j
print ("a=",a, "b=",b,"a<b is",a<b)
print ("a=",a, "b=",b,"a>b is",a>b)

它将产生以下输出-

comparison of complex numbers
Traceback (most recent call last):
  File "C:\Users\mlath\examples\example.py", line 5, in <module>
    print ("a=",a, "b=",b,"a<b is",a<b)
                                      ^^^
TypeError: '<' not supported between instances of 'complex' and
'complex

布尔值的比较

Python 中的布尔对象实际上是整数:True 为 1,False 为 0。事实上,Python 将任何非零数字视为 True。在 Python 中,可以对布尔对象进行比较。“假<真”才是真!

print ("comparison of Booleans")
a=True
b=False
print ("a=",a, "b=",b,"a<b is",a<b)
print ("a=",a, "b=",b,"a>b is",a>b)
print ("a=",a, "b=",b,"a==b is",a==b)
print ("a=",a, "b=",b,"a!=b is",a!=b)

它将产生以下输出-

comparison of Booleans
a= True b= False a<b is False
a= True b= False a>b is True
a= True b= False a==b is False
a= True b= False a!=b is True

序列类型比较

在Python中,只能对相似的序列对象进行比较。字符串对象只能与另一个字符串进行比较。列表无法与元组进行比较,即使两者具有相同的项目。

print ("comparison of different sequence types")
a=(1,2,3)
b=[1,2,3]
print ("a=",a, "b=",b,"a<b is",a<b)

它将产生以下输出-

comparison of different sequence types
Traceback (most recent call last):
  File "C:\Users\mlath\examples\example.py", line 5, in <module>
    print ("a=",a, "b=",b,"a<b is",a<b)
                                       ^^^
TypeError: '<' not supported between instances of 'tuple' and 'list'

序列对象通过字典顺序机制进行比较。比较从第 0 个索引处的项目开始。如果它们相等,则比较移动到下一个索引,直到某个索引处的项目碰巧不相等,或者其中一个序列耗尽。如果一个序列是另一个序列的初始子序列,则较短的序列是较小的(较小的)序列。

哪个操作数更大取决于它们不相等的索引处的项目值的差异。例如,“BAT”>“BAR”为 True,因为按照 Unicode 顺序,T 位于 R 之后。

如果两个序列的所有项比较相等,则认为这两个序列相等。

print ("comparison of strings")
a='BAT'
b='BALL'
print ("a=",a, "b=",b,"a<b is",a<b)
print ("a=",a, "b=",b,"a>b is",a>b)
print ("a=",a, "b=",b,"a==b is",a==b)
print ("a=",a, "b=",b,"a!=b is",a!=b)

它将产生以下输出-

comparison of strings
a= BAT b= BALL a<b is False
a= BAT b= BALL a>b is True
a= BAT b= BALL a==b is False
a= BAT b= BALL a!=b is True

在下面的示例中,比较两个元组对象 -

print ("comparison of tuples")
a=(1,2,4)
b=(1,2,3)
print ("a=",a, "b=",b,"a<b is",a<b)
print ("a=",a, "b=",b,"a>b is",a>b)
print ("a=",a, "b=",b,"a==b is",a==b)
print ("a=",a, "b=",b,"a!=b is",a!=b)

它将产生以下输出-

a= (1, 2, 4) b= (1, 2, 3) a<b is False
a= (1, 2, 4) b= (1, 2, 3) a>b is True
a= (1, 2, 4) b= (1, 2, 3) a==b is False
a= (1, 2, 4) b= (1, 2, 3) a!=b is True

字典对象的比较

Python 字典中“<”和“>”运算符的使用未定义。如果使用这些操作数,则会报告 TypeError: '<' not support between 'dict' 和 'dict' 实例。

相等比较检查两个字典项的长度是否相同。字典的长度是其中键值对的数量。

Python 字典只是简单地按长度进行比较。元素较少的字典被认为比元素较多的字典小。

print ("comparison of dictionary objects")
a={1:1,2:2}
b={2:2, 1:1, 3:3}
print ("a=",a, "b=",b,"a==b is",a==b)
print ("a=",a, "b=",b,"a!=b is",a!=b)

它将产生以下输出-

comparison of dictionary objects
a= {1: 1, 2: 2} b= {2: 2, 1: 1, 3: 3} a==b is False
a= {1: 1, 2: 2} b= {2: 2, 1: 1, 3: 3} a!=b is True