python 元组的列表排序

2019-07-05 10:42:47 浏览数 (1)

!/usr/bin/python

-- coding: UTF-8 --

获取列表的第二个元素

def takeSecond(elem): return elem[1]

列表

random = [(2, 2), (3, 4), (4, 1), (1, 3)]

指定第二个元素排序

random.sort(key=takeSecond)

输出类别

print '排序列表:', random


xxlist.sort(key=lambda x:x[1])

0 人点赞