python 迭代器

Posted 破晓

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 迭代器相关的知识,希望对你有一定的参考价值。

from collections import Iterator

class IterA(Iterator):

def __init__(self,Itlist):

self.Itlist = Itlist
self.index = 0

def next(self):
if self.index == len(self.Itlist):
raise StopIteration
a = self.Itlist[self.index]

self.index +=1
return a















以上是关于python 迭代器的主要内容,如果未能解决你的问题,请参考以下文章

Python迭代器

25Python之迭代器

python迭代器 iterator

Python中的迭代器

2020Python修炼记20Python语法入门—迭代器

python的迭代器