When I saw #Python code like:
processed = map(normalize, map(clean, filter(is_valid, items)))
I immediately realized why Pythonistas believe that list comprehensions read better. I'm really surprised they didn't add some form of pipeline chaining to make such transformations more natural.
Not a big deal, but after so much #Ruby, #Clojure and #OCaml my mind really struggles to parse such code.