python3 自定义比较函数

2023-01-31 01:01:48 函数 自定义 python3

python 2 中支持类似 c++ 中 cmp 的写法

Python 3 放弃了这一用法

官方说明:https://docs.python.org/3/howto/sorting.html#sortinghowto

多元素比较时可以写成:

a = [[1,2],[2,1],[1,1],[2,2]]  
print(a)  
a.sort(key=lambda x:(-x[0],x[1]))  
print(a)  
第一元素逆序,第二元素正序


相关文章