from collections import OrderedDict

在python中,dict这个数据结构由于hash的特性,是无序的,这在有时候会给我们带来一些麻烦,幸运的是,

collections模块为我们提供了OrderdDict,当你要获取一个有序的字典对象时,用它。

from collections import OrderedDict

from collections import OrderedDict

源网址链接:http://www.zlovezl.cn/articles/collections-in-python/

上一篇:团队作业8——Beta 阶段冲刺3rd day


下一篇:Think in 递归