日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程语言 > python >内容正文

python

python列表中字典排序_python中字典排序,列表中的字典排序

發布時間:2025/3/15 python 27 豆豆
生活随笔 收集整理的這篇文章主要介紹了 python列表中字典排序_python中字典排序,列表中的字典排序 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

python中字典排序,列表中的字典排序

一.使用python模塊:operator

import operator #首先要導入模塊operator

x = {1:2, 3:4, 4:3, 2:1, 0:0}

sorted_x = sorted(x.iteritems(), key=operator.itemgetter(1)) #按字典值排序(默認為升序)

print(sorted_x) #[(0, 0), (2, 1), (1, 2), (4, 3), (3, 4)]

sorted_x = sorted(x.iteritems(), key=operator.itemgetter(1), reverse=True) #如果要降序排序(一),可以指定reverse=True

#sorted_x.reverse()#排序二:或者直接使用list的reverse方法將sorted_x順序反轉

print (sorted_x) #[(3, 4), (4, 3), (1, 2), (2, 1), (0, 0)]

二. 更為常用的方法是,用lambda表達式

x = {1:2, 3:4, 4:3, 2:1, 0:0}

sorted_x = sorted(x.items(), key=lambda x : x[1])

print(sorted_x) #[(0, 0), (2, 1), (1, 2), (4, 3), (3, 4)]

sorted_x = sorted(x.items(), key=lambda x : x[1], reverse=True)

print(sorted_x) #[(3, 4), (4, 3), (1, 2), (2, 1), (0, 0)]

三. 包含字典dict的列表list的排序方法與dict的排序類似,如下:

方法一:使用python模塊:operator

import operator

x = [{'name':'Homer', 'age':39}, {'name':'Bart', 'age':10}]

sorted_x = sorted(x, key=operator.itemgetter('name'))

print(sorted_x) #[{'age': 10, 'name': 'Bart'}, {'age': 39, 'name': 'Homer'}]

sorted_x = sorted(x, key=operator.itemgetter('name'), reverse=True)

print(sorted_x) #[{'age': 39, 'name': 'Homer'}, {'age': 10, 'name': 'Bart'}]

方法二:使用lambda表達式

x = [{'name':'Homer', 'age':39}, {'name':'Bart', 'age':10}]

sorted_x = sorted(x, key=lambda x : x['name'])

print(sorted_x) #[{'age': 10, 'name': 'Bart'}, {'age': 39, 'name': 'Homer'}]

sorted_x = sorted(x, key=lambda x : x['name'], reverse=True)

print(sorted_x) #[{'age': 39, 'name': 'Homer'}, {'age': 10, 'name': 'Bart'}]

總結

以上是生活随笔為你收集整理的python列表中字典排序_python中字典排序,列表中的字典排序的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。