Python Iterators: Difference between revisions

From NovaOrdis Knowledge Base
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>

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 iter()