python3 cmp實現方式
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
函數的返回值是佈爾哦
以上為個人經驗,希望能給大傢一個參考,也希望大傢多多支持WalkonNet。
推薦閱讀:
- C++函數對象詳解附帶實例
- Python列表排序 list.sort方法和內置函數sorted用法
- python不等於運算符的具體使用
- 3個 Python 編程技巧
- Python運算符重載的簡單實例代碼