gpt4 book ai didi

python - 带有 dict.fromkeys() 和类字典对象的 KeyError

转载 作者:太空宇宙 更新时间:2023-11-03 13:24:49 24 4
gpt4 key购买 nike

在 Python 中,您可以使用字典作为 dict.fromkeys() 的第一个参数,例如:

In [1]: d = {'a': 1, 'b': 2}

In [2]: dict.fromkeys(d)
Out[2]: {'a': None, 'b': None}

我试图对一个类似字典的对象做同样的事情,但总是会引发一个KeyError,例如:

In [1]: class SemiDict:
...: def __init__(self):
...: self.d = {}
...:
...: def __getitem__(self, key):
...: return self.d[key]
...:
...: def __setitem__(self, key, value):
...: self.d[key] = value
...:
...:

In [2]: sd = SemiDict()

In [3]: sd['a'] = 1

In [4]: dict.fromkeys(sd)
---------------------------------------------------------------------------
KeyError Traceback (most recent call last)

C:\bin\Console2\<ipython console> in <module>()

C:\bin\Console2\<ipython console> in __getitem__(self, key)

KeyError: 0

这里究竟发生了什么?除了使用 dict.fromkeys(sd.d) 之类的东西之外,它还能被解决吗?

最佳答案

为了创建字典,fromkeys 遍历它的参数。所以它必须是一个迭代器。使其工作的一种方法是将 __iter__ 方法添加到您的 dict-like:

def __iter__(self):
return iter(self.d)

关于python - 带有 dict.fromkeys() 和类字典对象的 KeyError,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1509153/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com