共计 256 个字符,预计需要花费 1 分钟才能阅读完成。
使用 sorted() 函数以及 reverse 参数可以对元组进行从大到小的排序。
例如:
tup = (3, 1, 4, 2, 5)
sorted_tup = sorted(tup, reverse=True)
print(sorted_tup)
输出:
[5, 4, 3, 2, 1]
还可以使用内置的 sorted() 函数结合 lambda 表达式进行排序:
tup = (3, 1, 4, 2, 5)
sorted_tup = sorted(tup, key=lambda x: -x)
print(sorted_tup)
输出:
[5, 4, 3, 2, 1]
丸趣 TV 网 – 提供最优质的资源集合!
正文完