基于第二列对2D列表进行排序

时间:2016-02-29 21:31:24

标签: python list sorting 2d

我在Python中对2D列表进行排序。现在,我根据第一列按升序对列表进行了排序。我的列表看起来像这样:

Enter image description here

现在只根据第二列对第一列具有相同元素的行进行排序。它看起来应该是这样的:

Enter image description here

1 个答案:

答案 0 :(得分:0)

我相信你会问这两个问题的组合:

  1. 如何使用多个属性对Python中的列表进行排序:Sort a list by multiple attributes?

  2. 如何在Python中按日期排序:How do I sort this list in Python, if my date is in a String?

  3. 希望这些答案有所帮助。