美文网首页
python对元组集合进行排序

python对元组集合进行排序

作者: 那脸憔悴 | 来源:发表于2017-04-05 13:47 被阅读0次
#coding:utf-8
import operator
l = [(1, 5, 8), (6, 2, 4), (9, 7, 5)]
l.sort(key=operator.itemgetter(0)) #对该元组的第一个元素进行升序排列
print l
# [(1, 5, 8), (6, 2, 4), (9, 7, 5)]
l.sort(key=operator.itemgetter(2)) #对该元组的第三个元素进行升序排列
print l
# [(6, 2, 4), (9, 7, 5), (1, 5, 8)]

相关文章

网友评论

      本文标题:python对元组集合进行排序

      本文链接:https://www.haomeiwen.com/subject/afntattx.html