sorted 與 sort 也可以處理文字的排序,預設會依照英文字母的順序排列: # 文字排序 com = ['Microsoft', 'Google', 'Amazon', 'Facebook', 'Apple'] print(sorted(com))
確定! 回上一頁