可迭代对象( iterable ) 是实现了__iter__()方法的对象
__iter__()
迭代器( iterator)是实现了__iter__()和__next__()方法的对象
__next__()
可迭代对象( iterable )通过调用 iter() 方法得到一个 迭代器( iterator)
iter()
复习迭代器 VS 生成器
原文:https://www.cnblogs.com/nxf-rabbit75/p/9975972.html