使用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]