Posts pythonTip 51 降序排序
Post
Cancel

pythonTip 51 降序排序

题目描述: 给你一个list L, 如 L=[2, 8, 3, 50], 对L进行降序排序并输出, 如样例L的结果为[50, 8, 3, 2]

示例:

输入: L = [4, 2, 25, 7777777, 100, 3, 77777777, 77777777, 77777777, 77777777] 输出:[77777777, 77777777, 77777777, 77777777, 7777777, 100, 25, 4, 3, 2]

分析: 本质上面就是将数组排序后输出。 我在这里使用了 python 提供的内置的 sorted 函数,里面有一个参数 reverse。 就是告诉编译器,是否反转列表。

代码:

1
print(sorted(L, reverse=True))
This post is licensed under CC BY 4.0 by the author.
Trending Tags
Contents

pythonTip 50 Py扔铅球

pythonTip 52 因子平方和

Trending Tags