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]
Posted 屋中人
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python之List排序相关的知识,希望对你有一定的参考价值。
#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]
以上是关于python之List排序的主要内容,如果未能解决你的问题,请参考以下文章