本篇文章主要介绍了python中OrderedDict的使用方法详解,非常具有实用价值,需要的朋友可以参考下
很多人认为python中的字典是无序的,因为它是按照hash来存储的,但是python中有个模块collections(英文,收集、集合),里面自带了一个子类
OrderedDict,实现了对字典对象中元素的排序。请看下面的实例:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
|
输出:
Regular dictionary
a A
c C
b B
Order dictionary
a A
b B
c C
1 1
2 2
可以看到,同样是保存了ABC等几个元素,但是使用OrderedDict会根据放入元素的先后顺序进行排序。所以输出的值是排好序的。
OrderedDict对象的字典对象,如果其顺序不同那么Python也会把他们当做是两个不同的对象,请看事例:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
|
输出:
Regular dictionary:
True
OrderedDict:
False
再看几个例子:
1 2 3 4 5 6 7 8 9 10 11 |
|
对于如何将OrderedDict转换成正常的格式,如下:
这是很容易转换您的OrderedDict
到正规Dict
这样的:
dict(OrderedDict([('method', 'constant'), ('data', '1.225')]))
如果将其存储在数据库字符串,使用JSON是要走的路。这也很简单,你甚至不必担心转换为普通dict
:
import json
d = OrderedDict([('method', 'constant'), ('data', '1.225')])
dString = json.dumps(d)
或者直接转储数据存储到文件:
with open('outFile.txt','w') as o:
json.dump(d, o)