python之List排序

Posted 屋中人

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python之List排序相关的知识,希望对你有一定的参考价值。

sorted()

#coding:utf-8
#sorted Ascending 升序
L = [12,23,43,3,65,34,21,3645]
print(sorted(L))

>>>output
[3, 12, 21, 23, 34, 43, 65, 3645]


#sorted Descending 降序
print(sorted(L,reverse = True))

>>>output
[3645, 65, 43, 34, 23, 21, 12, 3]

sort()

以上是关于python之List排序的主要内容,如果未能解决你的问题,请参考以下文章

python基础之冒泡排序

python之简单排序和随机整数

选择排序之python

转:Python习题之列表排序,4种方法

Python学习系列之内置函数

python中两个list该如何排序