Python List sort()方法
Python List sort()方法
sort() 函數(shù)用于對原列表進行排序,如果指定參數(shù),則使用比較函數(shù)指定的比較函數(shù)。
語法
sort()方法語法:
list.sort(cmp=None, key=None, reverse=False)
參數(shù)
- cmp -- 可選參數(shù), 如果指定了該參數(shù)會使用該參數(shù)的方法進行排序。
- key -- 主要是用來進行比較的元素,只有一個參數(shù),具體的函數(shù)的參數(shù)就是取自于可迭代對象中,指定可迭代對象中的一個元素來進行排序。
- reverse -- 排序規(guī)則,reverse = True 降序, reverse = False 升序(默認)。
返回值
該方法沒有返回值,但是會對列表的對象進行排序。
實例
以下實例展示了 sort() 函數(shù)的使用方法:
#!/usr/bin/python # -*- coding: UTF-8 -*- aList = ['123', 'Google', 'Codebaoku', 'Taobao', 'Facebook']; aList.sort(); print("List : ") print(aList)
以上實例輸出結(jié)果如下:
List : ['123', 'Facebook', 'Google', 'Codebaoku', 'Taobao']
以下實例降序輸出列表:
#!/usr/bin/python # -*- coding: UTF-8 -*- # 列表 vowels = ['e', 'a', 'u', 'o', 'i'] # 降序 vowels.sort(reverse=True) # 輸出結(jié)果 print('降序輸出:') print( vowels )
以上實例輸出結(jié)果如下:
降序輸出: ['u', 'o', 'i', 'e', 'a']
以下實例演示了通過指定列表中的元素排序來輸出列表:
#!/usr/bin/python # -*- coding: UTF-8 -*- # 獲取列表的第二個元素 def takeSecond(elem): return elem[1] # 列表 random = [(2, 2), (3, 4), (4, 1), (1, 3)] # 指定第二個元素排序 random.sort(key=takeSecond) # 輸出類別 print('排序列表:') print(random)
以上實例輸出結(jié)果如下:
排序列表: [(4, 1), (2, 2), (1, 3), (3, 4)]
相關文章
- Python 簡介
- Python 變量類型
- Python File 方法
- Python 高級鏈表
- Python 算法設計
- Python 算法類
- Python3 網(wǎng)絡編程
- Python3 JSON 解析
- Python MongoDB 數(shù)據(jù)庫連接 - PyMongo 驅(qū)動
- Python File flush() 方法
- Python os.ftruncate() 方法
- Python os.getcwd() 方法
- Python os.major() 方法
- Python os.makedev() 方法
- Python os.stat_float_times() 方法
- Python os.tmpfile() 方法
- Python isalnum()方法
- Python min()方法
- Python rfind()方法
- Python zfill()方法