Summary

Summarize the concept explored in this chapter regarding the Iterator pattern in Python.

We'll cover the following...

Recall

This chapter looked at a design pattern that seems ubiquitous in Python, the iterator. The Python iterator concept is a foundation of the language and is used widely. In this chapter we examined a number of aspects:

  • Design patterns are good ideas we see repeated in software implementations, designs, and architectures. A good design pattern has a name, and a context where it’s usable.
...