Python程序用于按降序对数组元素进行排序
当需要按降序对数组元素进行排序时,可以使用‘sort’方法,并指定一个名为‘reverse’的参数值为True。
下面是演示如何实现同样效果的代码—
更多Python相关文章,请阅读:Python 教程
举例
my_list = [44, 56, 42, 31, 11, 23, 78, 89, 9, 0]
print("The list is :")
print(my_list)
my_list.sort(reverse = True)
print("The list after sorting is :")
print(my_list)
输出结果
The list is :
[44, 56, 42, 31, 11, 23, 78, 89, 9, 0]
The list after sorting is :
[89, 78, 56, 44, 42, 31, 23, 11, 9, 0]
解释
-
定义一个列表,并在控制台上显示它。
-
在列表上调用‘sort’方法。
-
在此设置了一个名为‘reverse’的参数值为‘True’。
-
这有助于按降序显示元素。
-
在控制台输出结果。