How do I efficiently filter computed values within a Python list comprehension? - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T14:29:00Zhttp://stackoverflow.com/feeds/question/130262http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/130262/how-do-i-efficiently-filter-computed-values-within-a-python-list-comprehension5How do I efficiently filter computed values within a Python list comprehension?Nick2008-09-24T22:08:57Z2009-05-17T10:25:40Z
<p>The Python list comprehension syntax makes it easy to filter values within a comprehension. For example:</p>
<pre><code>result = [x**2 for x in mylist if type(x) is int]
</code></pre>
<p>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:</p>
<pre><code>result = [expensive(x) for x in mylist if expensive(x)]
</code></pre>
<p>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?</p>
http://stackoverflow.com/questions/130262/how-do-i-efficiently-filter-computed-values-within-a-python-list-comprehension/130276#1302768Answer by Nick for How do I efficiently filter computed values within a Python list comprehension?Nick2008-09-24T22:12:24Z2008-09-24T22:12:24Z<p>Came up with my own answer after a minute of thought. It can be done with nested comprehensions:</p>
<pre><code>result = [y for y in (expensive(x) for x in mylist) if y]
</code></pre>
<p>I guess that works, though I find nested comprehensions are only marginally readable </p>
http://stackoverflow.com/questions/130262/how-do-i-efficiently-filter-computed-values-within-a-python-list-comprehension/130278#1302786Answer by Dan Udey for How do I efficiently filter computed values within a Python list comprehension?Dan Udey2008-09-24T22:12:26Z2008-09-24T22:12:26Z<pre><code>result = [x for x in map(expensive,mylist) if x]
</code></pre>
<p>map() will return a list of the values of each object in mylist passed to expensive(). Then you can list-comprehend that, and discard unnecessary values.</p>
<p>This is somewhat like a nested comprehension, but should be faster (since the python interpreter can optimize it fairly easily).</p>
http://stackoverflow.com/questions/130262/how-do-i-efficiently-filter-computed-values-within-a-python-list-comprehension/130285#1302852Answer by yukondude for How do I efficiently filter computed values within a Python list comprehension?yukondude2008-09-24T22:14:18Z2008-09-24T22:14:18Z<p>You could always <a href="http://en.wikipedia.org/wiki/Memoization" rel="nofollow">memoize</a> the <code>expensive()</code> function so that calling it the second time around is merely a lookup for the computed value of <code>x</code>.</p>
<p><a href="http://wiki.python.org/moin/PythonDecoratorLibrary#head-11870a08b0fa59a8622201abfac735ea47ffade5" rel="nofollow">Here's just one of many implementations of memoize as a decorator</a>.</p>
http://stackoverflow.com/questions/130262/how-do-i-efficiently-filter-computed-values-within-a-python-list-comprehension/130288#1302882Answer by rcreswick for How do I efficiently filter computed values within a Python list comprehension?rcreswick2008-09-24T22:15:58Z2008-09-24T22:15:58Z<p>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:</p>
<p><a href="http://code.activestate.com/recipes/52201/" rel="nofollow">http://code.activestate.com/recipes/52201/</a></p>
<p>This has the added benefit that expensive(x) may be run <em>less</em> than N times, since any duplicate entries will make use of the memo from the previous execution.</p>
<p>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 <em>wont</em> change during your list comprehension, then you can reset the memos before the comprehension.</p>
http://stackoverflow.com/questions/130262/how-do-i-efficiently-filter-computed-values-within-a-python-list-comprehension/130309#1303097Answer by John Millikin for How do I efficiently filter computed values within a Python list comprehension?John Millikin2008-09-24T22:23:50Z2008-09-24T22:23:50Z<p>If the calculations are already nicely bundled into functions, how about using <code>filter</code> and <code>map</code>?</p>
<pre><code>result = filter (None, map (expensive, mylist))
</code></pre>
<p>You can use <code>itertools.imap</code> if the list is very large.</p>
http://stackoverflow.com/questions/130262/how-do-i-efficiently-filter-computed-values-within-a-python-list-comprehension/130312#1303124Answer by Thomas Wouters for How do I efficiently filter computed values within a Python list comprehension?Thomas Wouters2008-09-24T22:24:42Z2008-09-24T22:24:42Z<p>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:</p>
<pre><code>def gen_expensive(mylist):
for item in mylist:
result = expensive(item)
if result:
yield result
</code></pre>
<p>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.</p>
http://stackoverflow.com/questions/130262/how-do-i-efficiently-filter-computed-values-within-a-python-list-comprehension/133898#1338981Answer by Gregg Lind for How do I efficiently filter computed values within a Python list comprehension?Gregg Lind2008-09-25T15:12:20Z2008-09-25T15:12:20Z<p>This is exactly what generators are suited to handle:</p>
<pre><code>result = (expensive(x) for x in mylist)
result = (do_something(x) for x in result if some_condition(x))
...
result = [x for x in result if x] # finally, a list
</code></pre>
<ol>
<li>This makes it totally clear what is happening during each stage of the pipeline.</li>
<li>Explicit over implicit</li>
<li>Uses generators everywhere until the final step, so no large intermediate lists</li>
</ol>
<p>cf: <a href="http://www.dabeaz.com/generators/" rel="nofollow">'Generator Tricks for System Programmers' by David Beazley</a></p>
http://stackoverflow.com/questions/130262/how-do-i-efficiently-filter-computed-values-within-a-python-list-comprehension/873661#8736610Answer by odwl for How do I efficiently filter computed values within a Python list comprehension?odwl2009-05-17T01:01:11Z2009-05-17T01:01:11Z<p>I will have a preference for:</p>
<pre><code>itertools.ifilter(bool, (expensive(x) for x in mylist))
</code></pre>
<p>This has the advantage to :
- avoid None as the function (will be eliminate in py 3): <a href="http://bugs.python.org/issue2186" rel="nofollow">http://bugs.python.org/issue2186</a>
- use only iterators.</p>
http://stackoverflow.com/questions/130262/how-do-i-efficiently-filter-computed-values-within-a-python-list-comprehension/874319#8743190Answer by paddy3118 for How do I efficiently filter computed values within a Python list comprehension?paddy31182009-05-17T10:25:40Z2009-05-17T10:25:40Z<p>There is the plain old use of a for loop to append to a list too:</p>
<p></p>
<pre><code>result = []
for x in mylist:
expense = expensive(x)
if expense:
result.append(expense)
</pre>
<p></code></p>