python3 cmp实现方式

作者:风轻云断 时间:2023-12-13 18:10:25 

python3 cmp实现

python3移除了cmp()函数,但提供了六个丰富的比较运算符,详见此处

import operator       #首先要导入运算符模块
operator.gt(1,2)      #意思是greater than(大于)
operator.ge(1,2)      #意思是greater and equal(大于等于)
operator.eq(1,2)      #意思是equal(等于)
operator.le(1,2)      #意思是less and equal(小于等于)
operator.lt(1,2)      #意思是less than(小于)

PY3__cmp__ mixin类

import sys
PY3 = sys.version_info[0] >= 3
if PY3:
   def cmp(a, b):
       return (a > b) - (a < b)
   # mixin class for Python3 supporting __cmp__
   class PY3__cmp__:  
       def __eq__(self, other):
           return self.__cmp__(other) == 0
       def __ne__(self, other):
           return self.__cmp__(other) != 0
       def __gt__(self, other):
           return self.__cmp__(other) > 0
       def __lt__(self, other):
           return self.__cmp__(other) < 0
       def __ge__(self, other):
           return self.__cmp__(other) >= 0
       def __le__(self, other):
           return self.__cmp__(other) <= 0
else:
   class PY3__cmp__:
       pass
class YourClass(PY3__cmp__):
'''自定义类,可以用list.sort函数或者sorted函数来实现排序。'''
def __init__(self, name, age):
       self.name = name
       self.age = age
   def __cmp__(self, other):
       return cmp(self.age, other.age)

cmp()函数实现的注解

bool仅仅是一个int子类,那么True和False可以理解为1和0区别。

因为如果第一个参数小于第二个参数,cmp返回负值,如果参数相等则返回0,否则返回正值,可以看到False - False == 0,True - False == 1和False - True == -1为cmp提供正确的返回值。

python3 使用cmp函数报错

python3中已经不使用cmp函数进行比较大小

使用operator模块

import operator
lt(a,b) 相当于 a<b     从第一个数字或字母(ASCII)比大小  
le(a,b)相当于a<=b 
eq(a,b)相当于a==b     字母完全一样,返回True, 
ne(a,b)相当于a!=b 
gt(a,b)相当于a>b 
ge(a,b)相当于 a>=b

函数的返回值是布尔哦

来源:https://blog.csdn.net/A156348933/article/details/86686190

标签:python3,cmp
0
投稿

猜你喜欢

  • Magic Photo Frame 神奇创意相框

    2009-09-15 20:45:00
  • mysql 5.7.13 解压缩版(免安装)安装配置教程

    2024-01-24 01:13:28
  • 通过Fckeditor把图片上传到独立图片服务器的方法

    2023-11-06 20:02:24
  • Js 按照MVC模式制作自定义控件

    2008-10-12 12:11:00
  • 利用Python如何生成随机密码

    2021-03-24 06:07:00
  • Pycharm cannot set up a python SDK问题的原因及解决方法

    2022-12-21 15:05:34
  • 如何快捷地实现分页显示功能?

    2010-01-01 15:08:00
  • MySQL为什么临时表可以重名

    2024-01-15 21:28:27
  • python迭代器与生成器详解

    2021-03-24 00:34:24
  • python3实现将json对象存入Redis以及数据的导入导出

    2022-05-05 16:31:27
  • Python及Django框架生成二维码的方法分析

    2023-10-11 22:25:48
  • windows下mysql 8.0.27 安装配置图文教程

    2024-01-24 00:26:57
  • MySQL基于索引的压力测试的实现

    2024-01-19 05:56:23
  • pygame库实现移动底座弹球小游戏

    2022-01-08 06:25:32
  • 详解Python魔法方法之描述符类

    2023-12-17 04:59:59
  • MySQL数据库root权限丢失解决方案

    2008-07-13 13:59:00
  • sql语句优化之SQL Server(详细整理)

    2024-01-15 14:07:08
  • Python从视频中提取音频的操作

    2021-08-26 23:55:26
  • asp.net得到本机数据库实例的两种方法代码

    2024-01-27 16:00:42
  • Python3爬虫中关于Ajax分析方法的总结

    2021-04-07 17:28:47
  • asp之家 网络编程 m.aspxhome.com