标签:opera python3 port 比较 span 意思 pytho python rate
在py2中,比较函数是cmp,而在py3,cmp已经不存在了,取而代之的是oprater这个模块
import oprater a=1 b=2 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) ‘‘‘ 简单说下这几个函数的意思吧。 lt(a, b) 相当于 a < b le(a,b) 相当于 a <= b eq(a,b) 相当于 a == b ne(a,b) 相当于 a != b gt(a,b) 相当于 a > b ge(a, b)相当于 a>= b ‘‘‘
标签:opera python3 port 比较 span 意思 pytho python rate
原文地址:https://www.cnblogs.com/saolv/p/9494803.html