x = [4, 2, 5, 3, 1] # 對原本的List 排序 x.sort() print(x) [1, 2, 3, 4, 5]. sorted 與 sort 也可以處理文字的排序,預設會依照英文字母的順序排列:
確定! 回上一頁