Yield an Array, String, or Any Iterable from a Generator

InstructorJohn Lindquist

Share this video with your friends

Send Tweet

Generators allow you to use the yield * syntax to yield each iteration of nested iterable as part of the main iterations. This enables you to combine multiple arrays, strings, or any iterable with anything you want to yield from your main generator.