Python进阶手册迭代器(Iterator)
上一篇:可迭代对象(Iterable)
下一篇:迭代(Iteration)
迭代器(Iterator)
任意对象,只要定义了next
(Python2) 或者__next__
方法,它就是一个迭代器。就这么简单。现在我们来理解迭代(iteration)
上一篇:可迭代对象(Iterable)
下一篇:迭代(Iteration)