如何根据元组元素[0]的新月顺序对此列表进行排序?

时间:2016-05-22 13:52:36

标签: python python-2.7 sorting tuples

The image of the list sorted with sort()

我喜欢这样的东西

[( 0 ,'dunno'),( 1 ,'dunno'),( 2 ,'dunno'),( 3 ,'dunno'),( 4 ,'dunno'),( 5 ,'n'),( 6 < / strong>,'dunno'),...]

我已经尝试了

sorted(list_of_tuples, key=lambda x: x[0])

2 个答案:

答案 0 :(得分:1)

sorted()不对列表进行排序,它会返回一个排序列表。如果要进行就地排序,请改用sort()方法。

答案 1 :(得分:-1)

解决方案的一部分就在这里。问题是,现在开头有一个我想要在列表末尾的字符串。

for line in list_of_tuples:
    line=line.sort(reverse=False)