Good morning, sinners. Today we're going to figure out what the hell is going on inside a Python expression like:
>>> reduce(lambda a, x: a + [x], things, [])
(What things
is doesn't matter too much, as long as it's an iterable. We'll look at a more specific ...