可以使用sort()方法对列表进行排序,然后设置reverse参数为True,即可实现降序排列。示例如下:
my_list = [5, 2, 8, 1, 9] my_list.sort(reverse=True) print(my_list)
输出结果为:
[9, 8, 5, 2, 1]