sorted排序函數

來源:互聯網
上載者:User

標籤:UNC   迭代   code   div   傳遞   字元   color   int   reverse   

排序函數

文法:sorted(Iterable,key=None,reverse=False)

Iterable:可迭代對象

key:定序(排序函數),在sorted內部會將可迭代對象中的每一個元素傳遞給這個函數的參數,根據函數運算的結果進行排序

reverse:是否是倒敘. True:倒敘,False:正序

lst = [1,5,6,4,3]new_lst = sorted(lst)print(lst)  #原列表不會變print(new_lst) #新列表是從小到大排序
lst = ["麻花藤", "岡本次郎", "中央情報局", "狐仙"]print(sorted(lst,key=lambda s:len(s))) #還可以和lamda一起用

 

dic = {1:"a",3:"b",2:"c"}dic1 = sorted(dic)print(dic1)   #如果是字典,返回排序後的key
lst = ["麻花藤", "岡本次郎", "中央情報局", "狐仙"]def func(s):    return len(s)print(sorted(lst,key = func))  #還可以和函數一起用,按字串長度排序

 

sorted排序函數

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.