1、概述
比较两个数的大小,如果 x < y 返回 -1, 如果 x == y 返回 0, 如果 x > y 返回 1。
注:cmp函数在python3中已经被去掉了。
2、语法
cmp
( x, y )
3、python3中实现比较的方法
引入operator模块,适合任何对象。
>>> import operator
>>> operator.eq('hello', 'name');
False
>>> operator.eq('hello', 'hello');
True
2023-11-23 15:30:52
1、概述
比较两个数的大小,如果 x < y 返回 -1, 如果 x == y 返回 0, 如果 x > y 返回 1。
注:cmp函数在python3中已经被去掉了。
2、语法
cmp
( x, y )
3、python3中实现比较的方法
引入operator模块,适合任何对象。
>>> import operator
>>> operator.eq('hello', 'name');
False
>>> operator.eq('hello', 'hello');
True
下一篇:关于STL容器的一些技巧