我要创建一个python字典,该字典向我返回字典中缺少的键的键值。
使用示例:
dic = smart_dict()
dic['a'] = 'one a'
print(dic['a'])
# >>> one a
print(dic['b'])
# >>> b
dict
有一个__missing__
挂钩:
class smart_dict(dict):
def __missing__(self, key):
return key
可以简化为(因为self
从未使用过):
class smart_dict(dict):
@staticmethod
def __missing__(key):
return key
这篇关于如何制作一个字典,为字典中缺少的键返回键,而不是引发KeyError?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!