sorted函数
使用python的sorted函数,该函数默认从小到大排序
sorted(list)返回一个对象,可以用作表达式。原来的list不变,生成一个新的排好序的list对象。...普通list
>>> a = [5,2,9,8,6]
>>> a = sorted(a)
>>> print(a)
[2, 5, 6, 8, 9]
倒序排序为从大到小排序,使用reverse=True...key = lambda x:x[1])
>>> print(a)
[('x', 0.56), ('a', 1.28), ('c', 2.36), ('s', 5.02), ('h', 20)]
倒序排序为从大到小排序...()
list.sort() 不会返回对象,改变原有的list。...list.sort(func=None, key=None, reverse=False)
正向排序
>>>L = [2,3,1,4]
>>>L.sort()
>>>L
>>>[1,2,3,4]