python3中替換python2中cmp函式
阿新 • • 發佈:2019-02-13
python 3.4.3 的版本中已經沒有cmp函式,被operator模組代替,在互動模式下使用時,需要匯入模組。
在沒有匯入模組情況下,會出現
所以要匯入模組
看下面給的內建函式
<span style="font-size:18px;">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) </span>
這幾個函式就是用來替換之前的cmp的,之前使用cmp的同胞們,咱們以後就換上面這些函式咯。
先簡單說下這幾個函式的意思吧。
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
函式的返回值是布林哦