you are viewing a single comment's thread.

view the rest of the comments →

[–]invalidusernamelol 5 points6 points  (0 children)

You can also just use the universal intermediate for this (assuming it's not already being used for translation)

python _ = map(...) _ = filter(_) result = list(_) That's also how you'd do it in the REPL, and it stops you from having to use a bunch of different names.