TIL
Briefly

The use of `yield from` can simplify generator functions by allowing you to yield all items from another iterable, making your code more concise.
Instead of using a loop with the `yield` statement, `yield from` directly feeds values from an iterable into the generator, reducing boilerplate code.
Read at daniel.feldroy.com
[
|
]