3
L=[[a,b],[c,d],[e,f],...]

我想按 max(a,b)、max(c,d)、max(e,f) 等对其进行排序。

4

1 回答 1

13

您可以提供自定义key函子sort

L.sort(key=max)
于 2012-12-29T21:25:27.087 回答