yield from and chaining generators
When one generator wants to hand off to another iterable, writing a for loop with yield works but feels noisy. yield from does the same thing in one line.
When one generator wants to hand off to another iterable, writing a for loop with yield works but feels noisy. yield from does the same thing in one line.