标准库:collections之orderedDict
Posted boost
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了标准库:collections之orderedDict相关的知识,希望对你有一定的参考价值。
们自己写的字典只能保存输入的键值对,但是不能保存他们输入的顺序,这时候可以借助Python的标准库collections里的orderedDict类
from collections import OrderedDict my_ordered_diction = OrderedDict() my_ordered_diction[‘wukong‘] = ‘C++‘ my_ordered_diction[‘bajie‘] = ‘Java‘ my_ordered_diction[‘shaseng‘] = ‘Qt‘ my_ordered_diction[‘tangsheng‘] = ‘python‘ for name,laugage in my_ordered_diction.items(): print(name.title() + ‘ favorite laugage is ‘ + laugage.title())
以上是关于标准库:collections之orderedDict的主要内容,如果未能解决你的问题,请参考以下文章