python3 cmp實現(xiàn)方式
更新時間:2022年02月09日 11:33:09 作者:風輕云斷
這篇文章主要介紹了python3 cmp實現(xiàn)方式,具有很好的參考價值,希望對大家有所幫助。如有錯誤或未考慮完全的地方,望不吝賜教
python3 cmp實現(xiàn)
python3移除了cmp()函數(shù),但提供了六個豐富的比較運算符,詳見此處
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函數(shù)或者sorted函數(shù)來實現(xiàn)排序。'''
def __init__(self, name, age):
self.name = name
self.age = age
def __cmp__(self, other):
return cmp(self.age, other.age)
cmp()函數(shù)實現(xiàn)的注解
bool僅僅是一個int子類,那么True和False可以理解為1和0區(qū)別。
因為如果第一個參數(shù)小于第二個參數(shù),cmp返回負值,如果參數(shù)相等則返回0,否則返回正值,可以看到False - False == 0,True - False == 1和False - True == -1為cmp提供正確的返回值。
python3 使用cmp函數(shù)報錯
python3中已經(jīng)不使用cmp函數(shù)進行比較大小
使用operator模塊
import operator lt(a,b) 相當于 a<b ? ? 從第一個數(shù)字或字母(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
函數(shù)的返回值是布爾哦
以上為個人經(jīng)驗,希望能給大家一個參考,也希望大家多多支持腳本之家。
相關(guān)文章
flask post獲取前端請求參數(shù)的三種方式總結(jié)
這篇文章主要介紹了flask post獲取前端請求參數(shù)的三種方式總結(jié),具有很好的參考價值,希望對大家有所幫助。如有錯誤或未考慮完全的地方,望不吝賜教2022-12-12

