Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Advantages of iterators and generators

  • Lazy evaluation
  • Save processing (or at least delay the use)
  • Save memory
  • Handle an infinite series of information
  • Turn complex operations into a simple matter of for loop.