Is there a map without result in python? - Stack Overflow most recent 30 from stackoverflow.com2009-12-02T14:42:18Zhttp://stackoverflow.com/feeds/question/1080026http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1080026/is-there-a-map-without-result-in-python4Is there a map without result in python?Juergen2009-07-03T16:20:11Z2009-07-04T02:06:00Z
<p>Sometimes, I just want to execute a function for a list of entries -- eg.:</p>
<pre><code>for x in wowList:
installWow(x, 'installed by me')
</code></pre>
<p>Sometimes I need this stuff for module initialization, so I don't want to have a footprint like x in global namespace. One solution would be to just use map together with lambda:</p>
<pre><code>map(lambda x: installWow(x, 'installed by me'), wowList)
</code></pre>
<p>But this of course creates a nice list [None, None, ...] so my question is, if there is a similar function without a return-list -- since I just don't need it.</p>
<p>(off course I can also use _x and thus not leaving visible footprint -- but the map-solution looks so neat ...)</p>
http://stackoverflow.com/questions/1080026/is-there-a-map-without-result-in-python/1080053#10800533Answer by Mark Rushakoff for Is there a map without result in python?Mark Rushakoff2009-07-03T16:30:22Z2009-07-03T16:46:00Z<p>You might try this:</p>
<pre><code>filter(lambda x: installWow(x, 'installed by me') and False, wowList)
</code></pre>
<p>That way, the return result is an empty list no matter what.</p>
<p>Or you could just drop the <code>and False</code> if you can force <code>installWow()</code> to always return <code>False</code> (or 0 or <code>None</code> or another expression that evaluates false).</p>
http://stackoverflow.com/questions/1080026/is-there-a-map-without-result-in-python/1080054#10800543Answer by balpha for Is there a map without result in python?balpha2009-07-03T16:30:39Z2009-07-03T16:35:49Z<p>Every expression evaluates to something, so you always get a result, whichever way you do it. And any such returned object (just like your list) will get thrown away afterwards because there's no reference to it anymore.</p>
<p>To clarify: Very few things in python are statements that don't return anything. Even a function call like</p>
<pre><code>doSomething()
</code></pre>
<p>still returns a value, even if it gets discarded right away. There is no such thing as Pascal's function / procedure distinction in python.</p>
http://stackoverflow.com/questions/1080026/is-there-a-map-without-result-in-python/1080056#10800560Answer by Alexander Ljungberg for Is there a map without result in python?Alexander Ljungberg2009-07-03T16:32:07Z2009-07-03T16:32:07Z<p>You could use a filter and a function that doesn't return a True value. You'd get an empty return list since filter only adds the values which evaluates to true, which I suppose would save you some memory. Something like this:</p>
<pre><code>#!/usr/bin/env python
y = 0
def myfunction(x):
global y
y += x
input = (1, 2, 3, 4)
print "Filter output: %s" % repr(filter(myfunction, input))
print "Side effect result: %d" % y
</code></pre>
<p>Running it produces this output:</p>
<pre><code>Filter output: ()
Side effect result: 10
</code></pre>
http://stackoverflow.com/questions/1080026/is-there-a-map-without-result-in-python/1080100#108010011Answer by RichieHindle for Is there a map without result in python?RichieHindle2009-07-03T16:45:26Z2009-07-03T16:45:26Z<p>How about this?</p>
<pre><code>for x in wowList:
installWow(x, 'installed by me')
del x
</code></pre>
http://stackoverflow.com/questions/1080026/is-there-a-map-without-result-in-python/1080269#10802693Answer by Anurag Uniyal for Is there a map without result in python?Anurag Uniyal2009-07-03T17:32:31Z2009-07-03T17:32:31Z<p>if it is ok to distruct wowList</p>
<pre><code>while wowList: installWow(wowList.pop(), 'installed by me')
</code></pre>
<p>if you do want to maintain wowList</p>
<pre><code>wowListR = wowList[:]
while wowListR: installWow(wowListR.pop(), 'installed by me')
</code></pre>
<p>and if order matters</p>
<pre><code>wowListR = wowList[:]; wowListR.reverse()
while wowListR: installWow(wowListR.pop(), 'installed by me')
</code></pre>
<p>Though as the solution of the puzzle I like the first :)</p>
http://stackoverflow.com/questions/1080026/is-there-a-map-without-result-in-python/1080293#10802934Answer by Anurag Uniyal for Is there a map without result in python?Anurag Uniyal2009-07-03T17:41:16Z2009-07-03T17:41:16Z<p>I can not resist myself to post it as separate answer</p>
<pre><code>reduce(lambda x,y: x(y, 'installed by me') , wowList, installWow)
</code></pre>
<p>only twist is installWow should return itself e.g.</p>
<pre><code>def installWow(*args):
print args
return installWow
</code></pre>
http://stackoverflow.com/questions/1080026/is-there-a-map-without-result-in-python/1080300#10803006Answer by John Montgomery for Is there a map without result in python?John Montgomery2009-07-03T17:45:30Z2009-07-03T17:45:30Z<p>You could make your own "each" function:</p>
<pre>
<code>
def each(fn, items):
for item in items:
fn(item)
# called thus
each(lambda x: installWow(x, 'installed by me'), wowList)
</code>
</pre>
<p>Basically it's just map, but without the results being returned. By using a function you'll ensure that the "item" variable doesn't leak into the current scope.</p>
http://stackoverflow.com/questions/1080026/is-there-a-map-without-result-in-python/1080336#10803361Answer by TokenMacGuy for Is there a map without result in python?TokenMacGuy2009-07-03T18:00:03Z2009-07-03T18:00:03Z<p>first rewrite the for loop as a generator expression, which does not allocate any memory. </p>
<pre><code>(installWow(x, 'installed by me') for x in wowList )
</code></pre>
<p>But this expression doesn't actually do anything without finding some way to consume it. So we can rewrite this to yield something determinate, rather than rely on the possibly <code>None</code> result of <code>installWow</code>. </p>
<pre><code>( [1, installWow(x, 'installed by me')][0] for x in wowList )
</code></pre>
<p>which creates a list, but returns only the constant 1. this can be consumed conveniently with <code>reduce</code></p>
<pre><code>reduce(sum, ( [1, installWow(x, 'installed by me')][0] for x in wowList ))
</code></pre>
<p>Which conveniently returns the number of items in wowList that were affected.</p>
http://stackoverflow.com/questions/1080026/is-there-a-map-without-result-in-python/1081326#10813261Answer by freegnu for Is there a map without result in python?freegnu2009-07-04T02:06:00Z2009-07-04T02:06:00Z<p>Just make installWow return None or make the last statement be pass like so:</p>
<pre><code>
def installWow(item, phrase='installed by me'):
print phrase
pass
</code></pre>
<p>and use this:</p>
<pre><code>
list(x for x in wowList if installWow(x))
</code></pre>
<p>x won't be set in the global name space and the list returned is [] a singleton</p>