2024年05月29日 python列表 python排序 Python51
python将列表排序的方法:
python有个内置的sort函数可以对列表实现排序。使用“列表.sort(reverse=True)语句就可以对列表进行降序排序了
示例代码如下:
a = [123, 55, 31, 65, 84, 99, 87, 546] a.sort(reverse=True) print(a)
执行结果如下:
本文链接:http://so.lmcjl.com/news/5556/