Python OrderedDict字典排序方法详解

作者:疯了的小蜗 时间:2022-01-07 13:32:09 

很多人认为python中的字典是无序的,因为它是按照hash来存储的,但是python中有个模块collections(英文,收集、集合),里面自带了一个子类

OrderedDict,实现了对字典对象中元素的排序。请看下面的实例:


import collections
print "Regular dictionary"
d={}
d['a']='A'
d['b']='B'
d['c']='C'
for k,v in d.items():
 print k,v

print "\nOrder dictionary"
d1 = collections.OrderedDict()
d1['a'] = 'A'
d1['b'] = 'B'
d1['c'] = 'C'
d1['1'] = '1'
d1['2'] = '2'
for k,v in d1.items():
 print k,v

输出:
Regular dictionary
a A
c C
b B

Order dictionary
a A
b B
c C
1 1
2 2

可以看到,同样是保存了ABC等几个元素,但是使用OrderedDict会根据放入元素的先后顺序进行排序。所以输出的值是排好序的。

OrderedDict对象的字典对象,如果其顺序不同那么Python也会把他们当做是两个不同的对象,请看事例:


print 'Regular dictionary:'
d2={}
d2['a']='A'
d2['b']='B'
d2['c']='C'

d3={}
d3['c']='C'
d3['a']='A'
d3['b']='B'

print d2 == d3

print '\nOrderedDict:'
d4=collections.OrderedDict()
d4['a']='A'
d4['b']='B'
d4['c']='C'

d5=collections.OrderedDict()
d5['c']='C'
d5['a']='A'
d5['b']='B'

print d1==d2

输出:
Regular dictionary:
True

OrderedDict:
False

再看几个例子:


dd = {'banana': 3, 'apple':4, 'pear': 1, 'orange': 2}
#按key排序
kd = collections.OrderedDict(sorted(dd.items(), key=lambda t: t[0]))
print kd
#按照value排序
vd = collections.OrderedDict(sorted(dd.items(),key=lambda t:t[1]))
print vd

#输出
OrderedDict([('apple', 4), ('banana', 3), ('orange', 2), ('pear', 1)])
OrderedDict([('pear', 1), ('orange', 2), ('banana', 3), ('apple', 4)])

来源:https://www.cnblogs.com/insane-Mr-Li/p/12779552.html

标签:Python,Ordered,Dict,字典
0
投稿

猜你喜欢

  • Python Web服务器Tornado使用小结

    2023-06-25 23:07:21
  • Python3 基础语法详解

    2023-06-24 06:10:55
  • Python日志处理模块logging用法解析

    2021-01-05 14:45:55
  • Python中的列表知识点汇总

    2021-06-01 05:00:50
  • python基于SMTP发送QQ邮件

    2023-04-07 21:11:51
  • python远程登录代码

    2022-09-12 15:48:15
  • 基于plt.title无法显示中文的快速解决

    2023-06-17 10:16:27
  • vue watch监控对象的简单方法示例

    2024-05-05 09:11:00
  • PHP lcfirst()函数定义与用法

    2023-06-05 01:25:20
  • Python二分法搜索算法实例分析

    2023-11-01 13:13:15
  • MySQL多表查询的具体实例

    2024-01-22 00:13:20
  • 方便和实用

    2009-02-02 10:16:00
  • python pip安装包出现:Failed building wheel for xxx错误的解决

    2023-04-01 16:26:38
  • 教你怎么用Python实现多路径迷宫

    2022-03-11 15:07:52
  • 嵌入式Web视频点播系统实现方法

    2007-10-10 21:17:00
  • Python pygame 项目实战事件监听

    2023-05-31 21:33:20
  • 小程序点餐界面添加购物车左右摆动动画

    2024-04-27 15:22:36
  • 浅谈在js传递参数中含加号(+)的处理方式

    2024-05-13 09:18:56
  • Python图像处理二值化方法实例汇总

    2021-04-10 21:41:33
  • 用Python下载一个网页保存为本地的HTML文件实例

    2023-04-15 18:41:53
  • asp之家 网络编程 m.aspxhome.com