Which lines appear, and in what order?
Python
def produce():
print("start")
yield 7
print("end")
stream = produce()
print("made")
print(next(stream))
def produce():
print("start")
yield 7
print("end")
stream = produce()
print("made")
print(next(stream))