python怎么将列表排序

python

python将列表排序的方法:

python有个内置的sort函数可以对列表实现排序。使用“列表.sort(reverse=True)语句就可以对列表进行降序排序了

示例代码如下:

a = [123, 55, 31, 65, 84, 99, 87, 546]

a.sort(reverse=True)

print(a)

执行结果如下:

更多Python知识,请关注:!!

以上是 python怎么将列表排序 的全部内容, 来源链接: utcz.com/z/529839.html

回到顶部