Task
π **Question:** Define \`flatten(items)\` that yields items from nested lists at any depth, using \`yield from\` for recursion. Run on \`[1, [2, [3, 4]], 5]\` and print each item on its own line.\nExpected:\n1\n2\n3\n4\n5
π Pick the right answer.
π‘ **Hint:** Re-read the theory above if unsure.