Iterating Intelligently: Generators, and the Iterator Protocol# Iteration, Comprehensions, and Generators Coverage Of This Topic for Recap: Sequential Datatypes Primitive Transformation [1,2,3,4] ⟶ [1,4,9,16] List Comprehension Larger Input List (Still Allocated) Input List ⟶ range Output List ⟶ yield Generator Function ⟶ Generator Expression Iteration, Generators, And yield The Iterator Protocol Implementing A Fibonacci Number Generator