小白python疑难|TypeError: instance has no next() method

1.代码如图所示 >>> class MyNumbers: def __iter__(self): self.a = 1 return self def __next__(self): if self.a <= 20: x = self.a self.a += 1 return x else: raise StopIteration >>> my
相关文章
相关标签/搜索