pythonOrderedDict怎么用
pythonOrderedDict怎么用
1、为了维持Key的顺序,可以使用OrderedDict。OrderedDict的Key按插入顺序排列,不是Key本身。
>>>fromcollectionsimportOrderedDict
>>>d=dict([('a',1),('b',2),('c',3)])
>>>d#dict的Key是无序的
{'a':1,'c':3,'b':2}
>>>od=OrderedDict([('a',1),('b',2),('c',3)])
>>>od#OrderedDict的Key是有序的
OrderedDict([('a',1),('b',2),('c',3)])
2、OrderedDict可以实现一个FIFO(先进先出)的dict,当容量超出限制时,先删除最早添加的Key:
fromcollectionsimportOrderedDict
classLastUpdatedOrderedDict(OrderedDict):
def__init__(self,capacity):
super(LastUpdatedOrderedDict,self).__init__()
self._capacity=capacity
def__setitem__(self,key,value):
containsKey=1ifkeyinselfelse0
iflen(self)-containsKey>=self._capacity:
last=self.popitem(last=False)
print('remove:',last)
ifcontainsKey:
delself[key]
print('set:',(key,value))
else:
print('add:',(key,value))
OrderedDict.__setitem__(self,key,value)
以上就是PythonOrderedDictde的用法,希望对大家有所帮助。更多Python学习教程请关注IT培训机构:千锋教育。
猜你喜欢LIKE
相关推荐HOT
更多>>python中open函数的使用方法
python中open函数的使用方法open中文翻译为打开的意思。在python中open函数可用于打开文件,并返回创建一个file对象,通过文件对象对文件进行各...详情>>
2023-11-08 19:42:27python中字典按key值排序的实现方法
python中字典按key值排序的实现方法之前小编介绍了字典本身不可排序,但按值可以,小编也介绍了按value值排序的三种方法。sorted()函数可以对数...详情>>
2023-11-08 19:21:28python中如何实现列表与集合相互转换?
python中如何实现列表与集合相互转换?python中,集合具有唯一性,同一集合中输出的元素不能相同,具有去重功能,可以完成列表去重,所以可以使...详情>>
2023-11-08 19:09:52python中partial函数如何使用?
python中partial函数如何使用?1.函数描述:设置函数参数,返回新的函数,更加简单的调用这个函数。2.语法:partial()3.常见模块搭配使用:funct...详情>>
2023-11-08 18:59:18热门推荐
python中open函数的使用方法
沸python中字典items()函数如何使用?
热python中字典按key值排序的实现方法
热python中如何实现列表与集合相互转换?
新python中partial函数如何使用?
如何使用python中的optionparser模块?
pythonslice的三个参数
pythonstr.zfill填充字符串
python异常中常见关键字
python输入数字变成月份
python如何判断集合的超集
pythonisprintable判断字符的使用
python断言的使用注意
python怎么处理字符编码问题