本文介绍了按两个字段对Python列表进行排序的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我从经过排序的csv中创建了以下列表
I have the following list created from a sorted csv
list1 = sorted(csv1, key=operator.itemgetter(1))
我实际上想按两个条件对列表进行排序:首先按字段1中的值,然后按字段2中的值.
I would actually like to sort the list by two criteria: first by the value in field 1 and then by the value in field 2. How do I do this?
推荐答案
像这样:
import operator
list1 = sorted(csv1, key=operator.itemgetter(1, 2))
这篇关于按两个字段对Python列表进行排序的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!