迭代器(Iterator)是实现了 iter () 方法和 next () 方法的对象。迭代器可以对容器对象(如列表、元组、字典等)进行遍历,每次调用 next () 方法时返回容器中的下一个元素,直到没有元素时抛出 StopIteration 异常 ...