Generators in Python
Learn how generators iterate a sequence in Python.
We'll cover the following...
In this lesson, you’ll learn writing iterators faster using fewer lines of code.
Simplified iterators
Previously, we implemented a basic iterator from scratch. This is what the class looks like in its simplified version:
class Counter:
  def __init__(self):
    self.n =1
  def __iter__(self):
   Ask