Python中的sorted函數以及operator.itemgetter函數

來源:互聯網
上載者:User

標籤:

operator.itemgetter函數

operator模組提供的itemgetter函數用於擷取對象的哪些維的資料,參數為一些序號(即需要擷取的資料在對象中的序號),下面看例子。

a = [1,2,3] 
>>> b=operator.itemgetter(1)      //定義函數b,擷取對象的第1個域的值
>>> b(a) 

>>> b=operator.itemgetter(1,0)   //定義函數b,擷取對象的第1個域和第0個的值
>>> b(a) 
(2, 1) 

要注意,operator.itemgetter函數擷取的不是值,而是定義了一個函數,通過該函數作用到對象上才能擷取值。

sorted函數

Python內建的排序函數sorted可以對list或者iterator進行排序,官網文檔見:http://docs.python.org/2/library/functions.html?highlight=sorted#sorted,該函數原型為:

sorted(iterable[, cmp[, key[, reverse]]])

參數解釋:

(1)iterable指定要排序的list或者iterable,不用多說;

(2)cmp為函數,指定排序時進行比較的函數,可以指定一個函數或者lambda函數,如:

 

       students為類對象的list,沒個成員有三個域,用sorted進行比較時可以自己定cmp函數,例如這裡要通過比較第三個資料成員來排序,代碼可以這樣寫:      students = [(‘john‘, ‘A‘, 15), (‘jane‘, ‘B‘, 12), (‘dave‘, ‘B‘, 10)]       sorted(students, key=lambda student : student[2])(3)key為函數,指定取待排序元素的哪一項進行排序,函數用上面的例子來說明,代碼如下:       sorted(students, key=lambda student : student[2])        key指定的lambda函數功能是去元素student的第三個域(即:student[2]),因此sorted排序時,會以students所有元素的第三個域來進行排序。有了上面的operator.itemgetter函數,也可以用該函數來實現,例如要通過student的第三個域排序,可以這麼寫:sorted(students, key=operator.itemgetter(2)) sorted函數也可以進行多級排序,例如要根據第二個域和第三個域進行排序,可以這麼寫:sorted(students, key=operator.itemgetter(1,2)) 
即先跟句第二個域排序,再根據第三個域排序。(4)reverse參數就不用多說了,是一個bool變數,表示升序還是降序排列,預設為false(升序排列),定義為True時將按降序排列。

 

Python中的sorted函數以及operator.itemgetter函數

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.