(
original
) (
raw
)
def generator(): if True: return [3,2,1] yield 1 yield 2 yield 3 print(list(generator()))