为什么在类上定义 __getitem__ 使其可迭代?
例如,如果我写:
class b:
def __getitem__(self, k):
return k
cb = b()
for k in cb:
print k
我得到输出:
0
1
2
3
4
5
6
7
8
...
我真的希望看到从“for k in cb:”返回的错误
最佳答案
如果您查看 PEP234 定义迭代器,它会说:
1. An object can be iterated over with "for" if it implements
__iter__() or __getitem__().
2. An object can function as an iterator if it implements next().
关于python - 为什么在类上定义 __getitem__ 使其在 python 中可迭代?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/55484872/