x = [4, 2, 5, 3, 1] # 反向排序 y = sorted(x, reverse = True) print(y) [5, 4, 3, 2, 1]. sort 與 sorted 兩個函數的參數用法都一樣:
確定! 回上一頁