【整理】Python对list中的list排序, Python嵌套list排序

原创文章,转载请注明: 转载自勤奋的小青蛙
本文链接地址: 【整理】Python对list中的list排序, Python嵌套list排序

原链接:How to sort a list of lists by a specific index of the inner list?

from operator import itemgetter
#排序前
L = [[1,1.0345],[2,6.098],[3,4.89],[2,5.97]]
#采用itemgetter方法,支持多列排序,示例代码同时排列0,1两列
sorted(L, key=itemgetter(0,1))
#输出结果:
#[[1, 1.0345], [2, 5.97], [2, 6.098], [3, 4.89]]
原创文章,转载请注明: 转载自勤奋的小青蛙
本文链接地址: 【整理】Python对list中的list排序, Python嵌套list排序

文章的脚注信息由WordPress的wp-posturl插件自动生成



|2|left
打赏

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: