2024年12月10日 Python51
1、StopIteration异常用于完成标识迭代,防止循环。
2、__next__()完成指定循环次数,触发StopIteration异常结束迭代。
python StopIteration异常的用法实例
class MyNumbers: def __iter__(self): self.a = 1 return self def __next__(self): if self.x < 20: x = self.a self.a += 1 return x else: raise StopIteration myclass = MyNumbers() myiter = iter(myclass) for x in myiter: print(x)
以上就是python StopIteration异常的使用,希望对大家有所帮助。
本文链接:http://so.lmcjl.com/news/19323/