The Python list comprehension syntax makes it easy to filter values within a comprehension. For example:
result = [x**2 for x in mylist if type(x) is int]
Will return a list of the squares of integers in mylist. However, what if the test involves some (costly) computation and you want to filter on the result? One option is:
result = [expensive(x) for x in mylist if expensive(x)]
This will result in a list of non-"false" expensive(x) values, however expensive() is called twice for each x. Is there a comprehension syntax that allows you to do this test while only calling expensive once per x?
The most obvious (and I would argue most readable) answer is to not use a list comprehension or generator expression, but rather a real generator:
It takes more horizontal space, but it's much easier to see what it does at a glance, and you end up not repeating yourself.
You could memoize expensive(x) (and if you are calling expensive(x) frequently, you probably should memoize it any way. This page gives an implementation of memoize for python:
http://code.activestate.com/recipes/52201/
This has the added benefit that expensive(x) may be run less than N times, since any duplicate entries will make use of the memo from the previous execution.
Note that this assumes expensive(x) is a true function, and does not depend on external state that may change. If expensive(x) does depend on external state, and you can detect when that state changes, or you know it wont change during your list comprehension, then you can reset the memos before the comprehension.
If the calculations are already nicely bundled into functions, how about using
filter
andmap
?You can use
itertools.imap
if the list is very large.This is exactly what generators are suited to handle:
cf: 'Generator Tricks for System Programmers' by David Beazley
Came up with my own answer after a minute of thought. It can be done with nested comprehensions:
I guess that works, though I find nested comprehensions are only marginally readable
I will have a preference for:
This has the advantage to: