码迷,mamicode.com
首页 > 编程语言 > 详细

Python cmp() 函数

时间:2017-12-17 19:20:01      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:结果   数值   gpo   span   port   需要   operator   hello   表达式   

描述

cmp(x,y) 函数用于比较2个对象,如果 x < y 返回 -1, 如果 x == y 返回 0, 如果 x > y 返回 1。

语法

以下是 cmp() 方法的语法:
cmp( x, y )

参数

x -- 数值表达式。
y -- 数值表达式。

返回值

如果 x < y 返回 -1, 如果 x == y 返回 0, 如果 x > y 返回 1。

实例

以下展示了使用 cmp() 方法的实例:

#!/usr/bin/python

print "cmp(80, 100) : ", cmp(80, 100)
print "cmp(180, 100) : ", cmp(180, 100)
print "cmp(-80, 100) : ", cmp(-80, 100)
print "cmp(80, -100) : ", cmp(80, -100)

 

以上实例运行后输出结果为:

cmp(80, 100) :  -1
cmp(180, 100) :  1
cmp(-80, 100) :  -1
cmp(80, -100) :  1

 


Python 3.X 的版本中已经没有 cmp 函数,如果你需要实现比较功能,需要引入 operator 模块,适合任何对象,包含的方法有:

operator.lt(a, b)
operator.le(a, b)
operator.eq(a, b)
operator.ne(a, b)
operator.ge(a, b)
operator.gt(a, b)
operator.__lt__(a, b)
operator.__le__(a, b)
operator.__eq__(a, b)
operator.__ne__(a, b)
operator.__ge__(a, b)
operator.__gt__(a, b)

 

实例

>>> import operator
>>> operator.eq(hello, name);
False
>>> operator.eq(hello, hello);
True

 

Python cmp() 函数

标签:结果   数值   gpo   span   port   需要   operator   hello   表达式   

原文地址:http://www.cnblogs.com/zhouxinfei/p/8052695.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!