Use yield from if you want to yield all values from another iterable:
def foob(x):
    yield from range(x * 2)
    yield from range(2)
list(foob(5))  # [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 0, 1]
This works with generators as well.
def fibto(n):
    a, b = 1, 1
    while True:
        if a >= n: break
        yield a
        a, b = b, a + b
def usefib():
    yield from fibto(10)
    yield from fibto(20)
list(usefib())  # [1, 1, 2, 3, 5, 8, 1, 1, 2, 3, 5, 8, 13]