Quiz

Test what you have learnt so far.

We'll cover the following...

Question # 1

Consider the snippet below:

def bar():
    yield 5


def foo():
    yield bar()


if __name__ == "__main__":

    gen = foo()
    for item in gen:
        print(item)

...