python中sorted()和list.sort()的用法
今天用python自帶的sorted對一個列表進行排序, 在這裡總結一下,只要是可迭代物件都可以用sorted 。
sorted(itrearble, cmp=None, key=None, reverse=False)
=號後面是預設值 預設是升序排序的, 如果想讓結果降序排列,用reverse=True
最後會將排序的結果放到一個新的列表中, 而不是對iterable本身進行修改。
eg:
1, 簡單排序
sorted(`123456`) # 字串
[`1`, `2`, `3`, `4`, `5`, `6`]
sorted([1,4,5,2,3,6]) # 列表
[1, 2, 3, 4, 5, 6]
sorted({1:`q`,3:`c`,2:`g`}) # 字典, 預設對字典的鍵進行排序
[1, 2, 3]
sorted({1:`q`,3:`c`,2:`g`}.keys()) # 對字典的鍵
[1, 2, 3]
sorted({1:`q`,3:`c`,2:`g`}.values()) # 對字典的值
[`c`, `g`, `q`]
sorted({1:`q`,3:`c`,2:`g`}.items()) # 對鍵值對組成的元組的列表
[(1, `q`), (2, `g`), (3, `c`)]
2, 對元素指定的某一部分進行排序,關鍵字排序
s = [`Chr1-10.txt`,`Chr1-1.txt`,`Chr1-2.txt`,`Chr1-14.txt`,`Chr1-3.txt`,`Chr1-20.txt`,`Chr1-5.txt`]
我想要按照-後的數字的大小升序排序。要用到key
sorted(s, key=lambda d : int(d.split(`-`)[-1].split(`.`)[0]))
[`Chr1-1.txt`, `Chr1-2.txt`, `Chr1-3.txt`, `Chr1-5.txt`, `Chr1-10.txt`, `Chr1-14.txt`, `Chr1-20.txt`]
這就是key的功能,制定排序的關鍵字,通常都是一個lambda函式,當然你也可以事先定義好這個函式。如果不講這個關鍵字轉化為整型,結果是這樣的:
sorted(s, key=lambda d : d.split(`-`)[-1].split(`.`)[0])
[`Chr1-1.txt`, `Chr1-10.txt`, `Chr1-14.txt`, `Chr1-2.txt`, `Chr1-20.txt`, `Chr1-3.txt`, `Chr1-5.txt`]
這相當於把這個關鍵字當做字串了,很顯然,在python中,`2` > `10`
你可以定製你想要的key, 如 key = lambda x : len(x) 按照序列的長度去排序。key= lambda x : (x[1], x[0]) 按二個元素,再第一個,等等……
3,cmp不怎麼用,因為key和reverse比單獨一個cmp效率要高。
如果進行降序排列,只需要加上reverse=True
總結: sorted 和list.sort 都接受key, reverse定製。但是區別是。list.sort()是列表中的方法,只能用於列表。而sorted可以用於任何可迭代的物件。list.sort()是在原序列上進行修改,不會產生新的序列。所以如果你不需要舊的序列,可以選擇list.sort()。 sorted() 會返回一個新的序列。舊的物件依然存在。
如果你有一個字典,鍵是正負都有的只有一個小數點的數字字串, 你想按數字從小到大排列鍵,首先把鍵列表轉化為浮點型。對浮點型資料用sorted排序,然後再轉化為只有一個小數點的數字字串:
for i in [`%.1f`%k for k in sorted(float(j) for j in fb_RA_11.keys())]:
相關文章
- python sorted()函式的引數用法Python函式
- Python中sorted()方法Python
- Python中__init__的用法和理解Python
- Python map, reduce, filter和sortedPythonFilter
- python中return的用法Python
- python中的eval用法Python
- Python中set的用法Python
- Python排序傻傻分不清?一文看透sorted與sort用法Python排序
- Python中裝飾器的基本概念和用法Python
- Python3中*和**運算子的用法詳解!Python
- Python中那些簡單又好用的特性和用法Python
- python sorted keyPython
- Python中return self的用法Python
- Python 中 Requests 庫的用法Python
- Python中operator 模組的用法Python
- Python中itertools 模組的用法Python
- python用List的內建函式list.sort進行排序Python函式排序
- 【Python】*args 和 **kwargs的用法Python
- [轉載] Python中協程的詳細用法和例子Python
- Python中urllib和urllib2庫的用法Python
- Python sorted函式Python函式
- Python 中 sorted 如何自定義比較邏輯Python
- python中zip()函式的用法Python函式
- 淺談python中的xpath用法Python
- python 中chr(),unichr(),ord()的用法Python
- Python中lambda表示式的用法Python
- Python中paramiko 模組的用法Python
- Python中pathlib 模組的用法Python
- Python中的split()函式的用法Python函式
- Python strip、lstrip和rstrip的用法Python
- Python的sorted函式應用Python函式
- js中try和catch的用法JS
- C#中?和??及?:的用法C#
- python中 os._exit() 和 sys.exit(), exit(0)的用法和區別Python
- JS中的!=、== 、!==、=== 的用法和區別JS
- JS中的!=、== 、!==、===的用法和區別。JS
- python高階特性-sorted()Python
- Python之operator.itemgetter函式和sorted函式Python函式