Python Tip #114 (of 365):
Instead of yielding in a loop, use yield-from.
(Technically the 2 are slightly different, but that fact rarely matters.)
Within a generator function, if you need to "yield" each item from a specific iterable, you could loop over the iterable and "yield" each item.
π§΅ (1/3)

