python怎么将列表排序
python将列表排序的方法:
python有个内置的sort函数可以对列表实现排序。使用“列表.sort(reverse=True)语句就可以对列表进行降序排序了
示例代码如下:
a = [123, 55, 31, 65, 84, 99, 87, 546] a.sort(reverse=True) print(a)
执行结果如下:
更多Python知识,请关注:云海天python教程网!!
来源:PY学习网:原文地址:https://www.py.cn/article.html