python – 从defaultdict获取原始密钥集

前端之家收集整理的这篇文章主要介绍了python – 从defaultdict获取原始密钥集前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
有没有办法从defaultdict获取原始/一致的密钥列表,即使请求了非现有密钥?
from collections import defaultdict
>>> d = defaultdict(lambda: 'default',{'key1': 'value1','key2' :'value2'})
>>>
>>> d.keys()
['key2','key1']
>>> d['bla']
'default'
>>> d.keys() # how to get the same: ['key2','key1']
['key2','key1','bla']

解决方法

你必须排除.具有默认值的键!
>>> [i for i in d if d[i]!=d.default_factory()]
['key2','key1']

时间与Jean建议的方法比较,

>>> def funct(a=None,b=None,c=None):
...     s=time.time()
...     eval(a)
...     print time.time()-s
...
>>> funct("[i for i in d if d[i]!=d.default_factory()]")
9.29832458496e-05
>>> funct("[k for k,v in d.items() if v!=d.default_factory()]")
0.000100135803223
>>> ###storing the default value to a variable and using the same in the list comprehension reduces the time to a certain extent!
>>> defa=d.default_factory()
>>> funct("[i for i in d if d[i]!=defa]")
8.82148742676e-05
>>> funct("[k for k,v in d.items() if v!=defa]")
9.79900360107e-05
原文链接:https://www.f2er.com/python/186025.html

猜你在找的Python相关文章