Python Iterators: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
(Created page with "=External= * https://docs.python.org/3/glossary.html#term-iterator =Internal= * Python Language =TODO= <font color=darkkhaki>TO PROCESS PyOOP...")
 
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.
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>

Revision as of 04:54, 7 July 2022

External

Internal

TODO

TO PROCESS PyOOP "The Iterator Pattern" + "Iterators" + "The iterator protocol"

Overview

An iterator instance represents a stream of data. The iterator instances are created from iterable objects with the built-in function [[Python Language Functions#iter|iter()