Python Iterators: Difference between revisions
Jump to navigation
Jump to search
Line 6: | Line 6: | ||
<font color=darkkhaki>TO PROCESS [[PyOOP]] "The Iterator Pattern" + "Iterators" + "The iterator protocol"</font> | <font color=darkkhaki>TO PROCESS [[PyOOP]] "The Iterator Pattern" + "Iterators" + "The iterator protocol"</font> | ||
=Overview= | =Overview= | ||
An iterator instance represents a stream of data. The iterator instances are created from iterable objects with the built-in function <code>[[Python Language Functions#iter|iter()]]</code> | An iterator instance represents a stream of data. | ||
The iterator instances are created from iterable objects with the built-in function <code>[[Python Language Functions#iter|iter()]]</code> |