active questions tagged list-comprehension - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T11:10:22Z http://stackoverflow.com/feeds/tag/list-comprehension http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1823016/haskell-list-comprehension 0 Haskell List Comprehension Mickel 2009-11-30T22:59:55Z 2009-11-30T23:05:23Z <p>I get the error "Not in scope: x" when doing as follows...</p> <pre><code>blanks :: Sudoku -&gt; [Pos] blanks (Sudoku su) = [ fst x | x &lt;- posSud | isBlank (snd x) ] where isBlank Nothing = True isBlank _ = False posSud = zip ixPos (concat su) ixPos = zip ixRows ixCols ixCols = concat (replicate 9 [0..8]) ixRows = [floor (x / 9) | x &lt;- [0..81]] </code></pre> <p>however, if I remove the guard of the 2:nd line GHCI compiles without giving me any errors.</p> <p>Can you help me understand what I'm doing wrong?</p> http://stackoverflow.com/questions/1815921/list-comprehension-wont-give-correct-result-in-haskell 1 List comprehension won't give correct result in Haskell Jonno_FTW 2009-11-29T16:10:18Z 2009-11-30T09:12:02Z <p>Hi I am doing <a href="http://projecteuler.net/index.php?section=problems&amp;id=136" rel="nofollow">project euler question 136</a>, and came up with the following to test the example given:</p> <pre><code>module Main where import Data.List unsum x y z n = (y &gt; 0) &amp;&amp; (z &gt; 0) &amp;&amp; (((x*x) - (y*y)- (z*z)) == n) &amp;&amp; ((x - y) == (y - z)) answer = snub $ takeWhile (&lt;100) [n|x&lt;-[1..],d&lt;-[1..x`div`2],n&lt;-[x..100],y&lt;-[x-d],z&lt;-[y-d], unsum x y z n ] where snub [] = [] snub (x:xs) | elem x xs = snub (filter (/=x) xs) | otherwise = x : snub xs </code></pre> <p><code>snub</code> will remove any numbers that are duplicates from a list.</p> <p>The example is supposed to give 25 solutions for <code>n</code> where <code>x^2 - y^2 - z^2 == n</code> and all numbers are positive (or so I gather from the question) and are an arithmetic progression such that <code>x-y == y-z</code>. But when I use the code, a list of 11 solutions for <code>n</code> are returned.</p> <p>What have I done wrong in my list comprehension and are there any optimisations I have missed out?</p> http://stackoverflow.com/questions/1790550/running-average-in-python 5 Running average in Python Nate Kohl 2009-11-24T14:48:41Z 2009-11-24T18:58:12Z <p>Is there a pythonic way to <strong>build up a list that contains a running average</strong> of some function?</p> <p>After reading a fun little piece about <a href="http://www.johndcook.com/Cauchy%5Festimation.html" rel="nofollow">Martians, black boxes, and the Cauchy distribution</a>, I thought it would be fun to calculate a running average of the Cauchy distribution myself:</p> <pre><code>import math import random def cauchy(location, scale): p = 0.0 while p == 0.0: p = random.random() return location + scale*math.tan(math.pi*(p - 0.5)) # is this next block of code a good way to populate running_avg? sum = 0 count = 0 max = 10 running_avg = [] while count &lt; max: num = cauchy(3,1) sum += num count += 1 running_avg.append(sum/count) print running_avg # or do something else with it, besides printing </code></pre> <p>I think that this approach works, but I'm curious if there might be a more elegant approach to building up that <code>running_avg</code> list than using loops and counters (e.g. <a href="http://docs.python.org/tutorial/datastructures.html#list-comprehensions" rel="nofollow">list comprehensions</a>).</p> <p>There are some related questions, but they address more complicated problems (small window size, exponential weighting) or aren't specific to Python:</p> <ul> <li><a href="http://stackoverflow.com/questions/488670/calculate-exponential-moving-average-in-python">http://stackoverflow.com/questions/488670/calculate-exponential-moving-average-in-python</a></li> <li><a href="http://stackoverflow.com/questions/1174984/how-to-efficiently-calculate-a-running-standard-deviation">http://stackoverflow.com/questions/1174984/how-to-efficiently-calculate-a-running-standard-deviation</a></li> <li><a href="http://stackoverflow.com/questions/1319891/calculating-the-moving-average-of-a-list">http://stackoverflow.com/questions/1319891/calculating-the-moving-average-of-a-list</a></li> </ul> http://stackoverflow.com/questions/493367/python-for-each-list-element-apply-a-function-across-the-list 5 Python: For each list element apply a function across the list joe calimar 2009-01-29T20:53:15Z 2009-11-23T16:50:45Z <p>Given [1,2,3,4,5], how can i do something like 1/1, 1/2, 1/3,1/4,1/5, ...., 3/1,3/2,3/3,3/4,3/5,.... 5/1,5/2,5/3,5/4,5/5</p> <p>I would like to store all the results, find the minimum, and return the two numbers used to find the minimum. So in the case i've described above i would like to return (1,5).</p> <p>So basically I would like to do something like</p> <p>for each element i in the list map some function across all elements in the list, taking i and j as parameters store the result in a master list, find the minimum value in the master list, and return the arguments i, j used to calculate this minimum value.</p> <p>In my real problem i have a list objects/coordinates, and the function I am using takes two coordinates and calculates the euclidean distance. I'm trying to find minimum euclidean distance between any two points but I don't need a fancy algorithm.</p> http://stackoverflow.com/questions/1779174/how-to-rearrange-this-function-to-return-the-extended-list-in-haskell 1 How to rearrange this function to return the extended list in Haskell Jonno_FTW 2009-11-22T16:22:26Z 2009-11-22T16:34:17Z <p>Hi</p> <p>I am doing <a href="http://projecteuler.net/index.php?section=problems&amp;id=68" rel="nofollow">problem 68</a> at project euler and came up with the following code in Haskell to return the list of numbers which fit the (given) solution:</p> <pre><code>lists = [n|n&lt;- permutations [1..6] , ring n ] ring [a,b,c,d,e,f] = (length $ nub $ map sum [[d,c,b],[f,b,a],[e,a,c]]) == 1 </code></pre> <p>This only returns a list of lists of 6 numbers each which fit the solution. What I don't know how to do, is make it return the actual solution, the lists that fit the form:</p> <pre><code>[d,c,b],[f,b,a],[e,a,c] </code></pre> <p>How can I make <code>lists</code> return a list of this format?</p> <p>(PS: I will add in the appropriate functions to return what the site actually wants later)</p> http://stackoverflow.com/questions/1760215/what-are-the-advantage-and-disadvantages-of-using-a-list-comprehension-in-python 0 What are the advantage and disadvantages of using a list comprehension in Python 2.54-6? mkelley33 2009-11-19T00:52:13Z 2009-11-19T00:55:44Z <p>I've heard that list comprehensions can be slow sometimes, but I'm not sure why? I'm new to Python (coming from a C# background), and I'd like to know more about when to use a list comprehension versus a for loop. Any ideas, suggestions, advice, or examples? Thanks for all the help.</p> http://stackoverflow.com/questions/954112/c-list-comprehensions-pure-syntactic-sugar 4 C# List Comprehensions = Pure Syntactic Sugar? Jonas Gorauskas 2009-06-05T03:12:21Z 2009-11-17T14:42:18Z <p>Consider the following C# code:</p> <pre><code>IEnumerable numbers = Enumerable.Range(0, 10); var evens = from num in numbers where num % 2 == 0 select num; </code></pre> <p>Is this pure syntactic sugar to allow me to write a <code>for</code> or <code>foreach</code> loop as a one-liner? Are there any compiler optimizations under the covers that make the list comprehension above more efficient than the loop construct? How does this work under the hood?</p> http://stackoverflow.com/questions/1747817/python-create-a-dictionary-with-list-comprehension 5 Python: create a dictionary with list comprehension flybywire 2009-11-17T10:07:53Z 2009-11-17T10:27:29Z <p>I like the python list comprehension operator (or idiom, or whatever it is).</p> <p>Can it be used to create dictionaries too? For example, by iterating over pairs of keys and values:</p> <pre><code>dict = {(k,v) for (k,v) in blah blah blah} # doesn't work :( </code></pre> http://stackoverflow.com/questions/1724080/how-to-split-the-file-content-by-space-and-end-of-line-character 1 How to split the file content by space and end-of-line character? uberjumper 2009-11-12T17:46:19Z 2009-11-13T02:38:25Z <p>When I do the following list comprehension I end up with nested lists:</p> <pre><code>channel_values = [x for x in [ y.split(' ') for y in open(channel_output_file).readlines() ] if x and not x == '\n'] </code></pre> <p>Basically I have a file composed of this:</p> <pre><code>7656 7653 7649 7646 7643 7640 7637 7634 7631 7627 7624 7621 7618 7615 8626 8623 8620 8617 8614 8610 8607 8604 8600 8597 8594 8597 8594 4444 &lt;snip several thousand lines&gt; </code></pre> <p>Where each line of this file is terminated by a new line.</p> <p>Basically I need to add each number (they are all separated by a single space) into a list.</p> <p>Is there a better way to do this via list comprehension?</p> http://stackoverflow.com/questions/1719929/filtering-odd-numbers 1 Filtering odd numbers Nimbuz 2009-11-12T04:43:30Z 2009-11-12T05:02:04Z <pre><code>M = [[1,2,3], [4,5,6], [7,8,9]] col2 = [row[1] + 1 for row in M if row[1] % 2 == 0] print (col2) </code></pre> <p>Output: <code>[3, 9]</code></p> <p>I'm expecting it to filter out the odd numbers, but it does the opposite.</p> http://stackoverflow.com/questions/1700113/python-complex-list-comprehensions-where-one-var-depends-on-another-x-for-x-in 1 Python: complex list comprehensions where one var depends on another (x for x in t[1] for t in tests) Albert 2009-11-09T10:04:46Z 2009-11-09T18:29:56Z <p>I want to do something like:</p> <pre><code>all = [ x for x in t[1] for t in tests ] </code></pre> <p>tests looks like:</p> <pre><code>[ ("foo",[a,b,c]), ("bar",[d,e,f]) ] </code></pre> <p>So I want to have the result</p> <pre><code>all = [a,b,c,d,e,f] </code></pre> <p>My code does not work, Python says:</p> <pre><code>UnboundLocalError: local variable 't' referenced before assignment </code></pre> <p>Is there any simple way to do that?</p> http://stackoverflow.com/questions/1673071/what-do-backticks-mean-to-the-python-interpreter-num 1 What do backticks mean to the python interpreter: `num` Dominic Bou-Samra 2009-11-04T11:00:38Z 2009-11-04T11:38:24Z <p>I'm playing around with list comprehensions and I came across this little snippet on another site:</p> <pre><code>return ''.join([`num` for num in xrange(loop_count)]) </code></pre> <p>I spent a few minutes trying to replicate the function (by typing) before realising the <code>num</code> bit was breaking it.</p> <p>What does enclosing a statement in those characters do? From what I can see it is the equivalent of str(num). But when I timed it:</p> <pre><code>return ''.join([str(num) for num in xrange(10000000)]) </code></pre> <p>It takes 4.09s whereas:</p> <pre><code>return ''.join([`num` for num in xrange(10000000)]) </code></pre> <p>takes 2.43s. </p> <p>Both give identical results but on is a lot slower. What is going on here?</p> <p><strong>EDIT:</strong> Oddly... <code>repr()</code> gives slightly slower results then <code>num</code>. 2.99s vs 2.43s. Using Python 2.6 (haven't tried 3.0 yet)</p> http://stackoverflow.com/questions/1247486/python-list-comprehension-vs-map 2 Python List Comprehension Vs. Map timothyawiseman 2009-08-07T23:43:31Z 2009-11-02T08:42:48Z <p>Is there a reason to prefer using map() over list comprehension or vice versa? Is one generally more effecient or generally considered more pythonic than the other?</p> http://stackoverflow.com/questions/1632902/lambda-versus-list-comprehension-performance 3 lambda versus list comprehension performance TallPaul 2009-10-27T18:51:22Z 2009-10-28T20:19:35Z <p>Hi,</p> <p>I recently posted a question using a lambda function and in a reply someone had mentioned lambda is going out of favor, to use list comprehensions instead. I am relatively new to Python. I ran a simple test:</p> <pre><code>import time S=[x for x in range(1000000)] T=[y**2 for y in range(300)] # # time1 = time.time() N=[x for x in S for y in T if x==y] time2 = time.time() print 'time diff [x for x in S for y in T if x==y]=', time2-time1 #print N # # time1 = time.time() N=filter(lambda x:x in S,T) time2 = time.time() print 'time diff filter(lambda x:x in S,T)=', time2-time1 #print N # # #http://snipt.net/voyeg3r/python-intersect-lists/ time1 = time.time() N = [val for val in S if val in T] time2 = time.time() print 'time diff [val for val in S if val in T]=', time2-time1 #print N # # time1 = time.time() N= list(set(S) &amp; set(T)) time2 = time.time() print 'time diff list(set(S) &amp; set(T))=', time2-time1 #print N #the results will be unordered as compared to the other ways!!! # # time1 = time.time() N=[] for x in S: for y in T: if x==y: N.append(x) time2 = time.time() print 'time diff using traditional for loop', time2-time1 #print N </code></pre> <p>They all print the same N so I commented that print stmt out (except the last way it's unordered), but the resulting time differences were interesting over repeated tests as seen in this one example:</p> <pre><code>time diff [x for x in S for y in T if x==y]= 54.875 time diff filter(lambda x:x in S,T)= 0.391000032425 time diff [val for val in S if val in T]= 12.6089999676 time diff list(set(S) &amp; set(T))= 0.125 time diff using traditional for loop 54.7970001698 </code></pre> <p>So while I find list comprehensions on the whole easier to read, there seems to be some performance issues at least in this example.</p> <p>So, two questions:</p> <ol> <li><p>Why is lambda etc being pushed aside?</p></li> <li><p>For the list comprehension ways, is there a more efficient implementation and how would you KNOW it's more efficient without testing? I mean, lambda/map/filter was supposed to be less efficient because of the extra function calls, but it seems to be MORE efficient.</p></li> </ol> <p>Paul</p> http://stackoverflow.com/questions/1620957/nesting-generator-expressions-in-the-argument-list-for-a-python-function-call 1 Nesting generator expressions in the argument list for a python function call fivebells 2009-10-25T13:44:38Z 2009-10-25T15:47:19Z <p>I like to use the following idiom for combining lists together, sometimes:</p> <pre><code>&gt;&gt;&gt; list(itertools.chain(*[[(e, n) for e in l] for n, l in (('a', [1,2]),('b',[3,4]))])) [(1, 'a'), (2, 'a'), (3, 'b'), (4, 'b')] </code></pre> <p>(I know there are easier ways to get this particular result, but it comes comes in handy when you want to iterate over the elements in lists of lists of lists, or something like that. The trouble is, when you use generator expressions, this becomes error prone. E.g.</p> <pre><code>&gt;&gt;&gt; list(itertools.chain(*(((e, n) for e in l) for n, l in (('a', [1,2]),('b',[3,4]))))) [(1, 'b'), (2, 'b'), (3, 'b'), (4, 'b')] </code></pre> <p>What's happening here is that the inner generator expressions get passed as arguments to <code>itertools.chain</code>, so at the the time they're evaluated, the outer generator expression has finished, and <code>n</code> is fixed at its final value, <code>'b'</code>. I'm wondering whether anyone has thought of ways to avoid this kind of error, beyond "don't do that."</p> http://stackoverflow.com/questions/1543820/comprehensions-in-python-and-javascript-are-only-very-basic 4 Comprehensions in Python and Javascript are only very basic? RD1 2009-10-09T13:39:13Z 2009-10-16T14:10:56Z <p>Looking at comprehensions in Python and Javascript, so far I can't see some of the main features that I consider most powerful in comprehensions in languages like Haskell. </p> <p>Do they allow things like multiple generators? Or are they just a basic map-filter form?</p> <p>If they don't allow multiple generators, I find them quite disappointing - why have such things been left out?</p> http://stackoverflow.com/questions/1571651/iterating-through-a-list-in-python 0 Iterating through a list in Python rescue 2009-10-15T11:04:21Z 2009-10-15T11:38:18Z <p>I am trying to iterate through a list and take each part of the list, encode it and join the result up when it is all done. As an example, I have a string which produces a list with each element being 16 characters in length.</p> <pre><code>message = (u'sixteen-letters.sixteen-letters.sixteen-letters.sixteen-letters.') result = split16(message, 16) msg = ';'.join(encode(result.pop(0)) for i in result) </code></pre> <p>The encode function takes a 16 byte string and returns the result, however with the way it is written, it only encodes half of the elements in th list. ie, if there are 4 elements in the list, only 2 will be encoded. If there are 6, it only does 3. </p> <p>If i try comprehension:</p> <pre><code>result = [encode(split16(message, 16) for message in list_of_messages)] result = ''.join(result) </code></pre> <p>It results in the whole list being sent at once. What i need to do is send each element to the encode function separately, get the result then join them together.</p> <p>Is there an easy way of achieving this ?</p> http://stackoverflow.com/questions/1528237/how-can-i-handle-exceptions-in-a-list-comprehension-in-python 0 How can I handle exceptions in a list comprehension in Python? Nathan Fellman 2009-10-06T21:36:06Z 2009-10-06T22:10:27Z <p>I have some a list comprehension in Python in which each iteration can throw an exception. </p> <p><strong>For instance</strong>, if I have:</p> <pre><code>eggs = (1,3,0,3,2) [1/egg for egg in eggs] </code></pre> <p>I'll get a <code>ZeroDivisionError</code> exception in the 3rd element.</p> <p>How can I handle this exception and continue execution of the list comprehension?</p> <p>The only way I can think of is to use a helper function:</p> <pre><code>def spam(egg): try: return 1/egg except ZeroDivisionError: # handle division by zero error # leave empty for now pass </code></pre> <p>But this looks a bit cumbersome to me.</p> <p>Is there a better way to do this in Python?</p> <p><strong>Note:</strong> This is a simple example (see "<em>for instance</em>" above) that I contrived because my real example requires some context. I'm not interested in avoiding divide by zero errors but in handling exceptions in a list comprehension.</p> http://stackoverflow.com/questions/1522960/python-list-comprehension-to-assign-different-values 1 Python: List comprehension to assign different values Casey 2009-10-05T23:45:02Z 2009-10-06T00:02:00Z <p>I'm making a 2D list and I would like to initialize it with a list comprehension. I would like it to do something like this:</p> <pre><code>[[x for i in range(3) if j &lt;= 1: x=1 else x=2] for j in range(3)] </code></pre> <p>so it should return something like:</p> <pre><code>[[1,1,1], [1,1,1], [2,2,2]] </code></pre> <p>How might I go about doing this?</p> <p>Thanks for your help.</p> http://stackoverflow.com/questions/1482967/list-of-lists-in-python 0 List of Lists in python? david 2009-09-27T07:01:18Z 2009-09-28T03:15:40Z <p>I need a good function to do this in python.</p> <pre><code>def foo(n): # do somthing return list_of_lists &gt;&gt; foo(6) [[1], [2,3], [4,5,6]] &gt;&gt; foot(10) [[1], [2,3], [4,5,6] [7,8,9,10]] </code></pre> <p><em>NOTE:Seems like my brain has stopped functioning today.</em></p> http://stackoverflow.com/questions/1466282/how-to-rewrite-this-loop-in-a-more-efficient-way-in-python 1 how to rewrite this loop in a more efficient way in python leon 2009-09-23T14:18:23Z 2009-09-23T16:58:08Z <p>I have a loop of the following type:</p> <pre><code>a = range(10) b = [something] for i in range(len(a)-1): b.append(someFunction(b[-1], a[i], a[i+1])) </code></pre> <p>However the for-loop is killing a lot of performance. I have try to write a windows generator to give me 2 elements everything time but it still require explicit for-loop in the end. Is there a way to make this shorter and more efficient in a pythonic way?</p> <p>Thanks</p> <p>edit: I forgot the element in b.. sorry guys. However the solution to my previous problem is very helpful in other problem I have too. Thanks.</p> http://stackoverflow.com/questions/1385931/scalas-for-comprehensions-vital-feature-or-syntactic-sugar 5 Scala's for-comprehensions: vital feature or syntactic sugar? Marcus Downing 2009-09-06T15:32:06Z 2009-09-07T03:15:04Z <p>When I first started looking at Scala, I liked the look of for-comprehensions. They seemed to be a bit like the foreach loops I was used to from Java 5, but with functional restrictions and a lot of sweet syntactic niceness.</p> <p>But as I've absorbed the Scala style, I find that every time I could use a for-comprension I'm using <code>map</code>, <code>flatMap</code>, <code>filter</code>, <code>reduce</code> and <code>foreach</code> instead. The intention of the code seems clearer to me that way, with fewer potential hidden surprises, and they're usually shorter code too.</p> <p>As far as I'm aware, for-comprehensions are always compiled down into these methods anyway, so I'm wondering: what are they actually for? Am I missing some functional revalation (it wouldn't be the first time)? Do for-comprehensions do something the other features can't, or would at least be much clumsier at? Do they shine under a particular use case? Is it really just a matter of personal taste?</p> http://stackoverflow.com/questions/1306670/mapping-a-nested-list-with-list-comprehension-in-python 3 Mapping a nested list with List Comprehension in Python? kjfletch 2009-08-20T14:42:39Z 2009-08-20T21:50:24Z <p>I have the following code which I use to map a nested list in Python to produce a list with the same structure. </p> <pre><code>&gt;&gt;&gt; nested_list = [['Hello', 'World'], ['Goodbye', 'World']] &gt;&gt;&gt; [map(str.upper, x) for x in nested_list] [['HELLO', 'WORLD'], ['GOODBYE', 'WORLD']] </code></pre> <p>Can this be done with list comprehension alone (without using the map function)?</p> http://stackoverflow.com/questions/1106903/python-stopiteration-exception-and-list-comprehensions 4 Python: StopIteration exception and list comprehensions Parand 2009-07-09T23:09:56Z 2009-08-08T01:00:55Z <p>I'd like to read at most 20 lines from a csv file:</p> <pre><code>rows = [csvreader.next() for i in range(20)] </code></pre> <p>Works fine if the file has 20 or more rows, fails with a StopIteration exception otherwise.</p> <p>Is there an elegant way to deal with an iterator that could throw a StopIteration exception in a list comprehension or should I use a regular for loop?</p> http://stackoverflow.com/questions/1020722/is-there-a-better-way-to-convert-a-list-to-a-dictionary-in-python-with-keys-but-n 4 is there a better way to convert a list to a dictionary in python with keys but no values? PyNEwbie 2009-06-20T01:43:49Z 2009-08-08T00:02:10Z <p>I was sure that there would be a one liner to convert a list to a dictionary where the items in the list were keys and the dictionary had no values. </p> <p>The only way I could find to do it was argued against </p> <p>"Using list comprehensions when the result is ignored is misleading and inefficient. A for loop is better"</p> <pre><code>myList=['a','b','c','d'] myDict={} x=[myDict.update({item:None}) for item in myList] &gt;&gt;&gt; myDict {'a': None, 'c': None, 'b': None, 'd': None} </code></pre> <p>It works but I thought someone might have some insight as to a better way to do this. </p> http://stackoverflow.com/questions/1222677/list-comprehensions-in-python-efficient-selection-in-a-list 5 List Comprehensions in Python : efficient selection in a list ThibThib 2009-08-03T14:30:18Z 2009-08-04T09:37:38Z <p>Hi</p> <p>Let's suppose that I have a list of elements, and I want to select only some of them, according to a certain function (for example a <em>distance</em> to an other element).</p> <p>I want to have as a result a list of tuple, with the distance and the element. So, I wrote the following code</p> <pre><code>result = [ ( myFunction(C), C) for C in originalList if myFunction(C) &lt; limit ] </code></pre> <p>But <code>myFunction</code> is a very time-consuming function, and the <code>originalList</code> quite big. So doing like that, <code>myFunction</code> will be call twice for every selected element.</p> <p>So, is there a way to avoid this ??</p> <p>I have two other possibilities, but they are not so good:</p> <ol> <li><p>the first one, is to create the unfiltered list</p> <pre><code>unfiltered = [ (myFunction(C),C) for C in originalList ] </code></pre> <p>and then sort it</p> <pre><code>result = [ (dist,C) for dist,C in unfiltered if dist &lt; limit ] </code></pre> <p>but in that case, I duplicate my <code>originalList</code> and waste some memory (the list could be quite big - more than 10,000 elements)</p></li> <li><p>the second one is tricky and not very pythonic, but efficient (the best we can do, since the function should be evaluated once per element). <code>myFunction</code> stores it last<br /> result in a global variable (<code>lastResult</code> for example), and this value is re-used in the List comprehension </p> <pre><code>result = [ (lastResult,C) for C in originalList if myFunction(C) &lt; limit ] </code></pre></li> </ol> <p>Do you have any better idea to achieve that, in an efficient and pythonic way ??</p> <p>Thanks for your answers.</p> http://stackoverflow.com/questions/1198777/double-iteration-in-list-comprehension 0 Double Iteration in List Comprehension ThomasH 2009-07-29T08:30:49Z 2009-07-29T13:50:12Z <p>In Python you can have multiple iterators in a list comprehension, like</p> <pre><code>[(x,y) for x in a for y in b] </code></pre> <p>for some suitable sequences a and b. I'm aware of the nested loop semantics of Python's list comprehensions.</p> <p>My question is: Can one iterator in the comprehension refer to the other? In other words: Could I have something like this:</p> <pre><code>[x for x in a for a in b] </code></pre> <p>where the current value of the outer loop is the iterator of the inner?</p> <p>As an example, if I have a nested list:</p> <pre><code>a=[[1,2],[3,4]] </code></pre> <p>what would the list comprehension expression be to achieve this result:</p> <pre><code>[1,2,3,4] </code></pre> <p>?? (Please only list comprehension answers, since this is what I want to find out).</p> http://stackoverflow.com/questions/1180846/one-liner-for-conditionally-replacing-dictionary-values 0 one liner for conditionally replacing dictionary values Pavel 2009-07-25T01:00:20Z 2009-07-25T12:25:07Z <p>Is there a better way to express this using list comprehension? Or any other way of expressing this in one line?</p> <p>I want to replace each value in the original dictionary with a corresponding value in the col dictionary, or leave it unchanged if its not in the col dictionary.</p> <pre><code>col = {'1':3.5, '6':4.7} original = {'1':3, '2':1, '3':5, '4':2, '5':3, '6':4} for entry in col.iteritems(): original[entry[0]] = entry[1] </code></pre> http://stackoverflow.com/questions/1172738/tokenizing-blocks-of-code-in-python 1 Tokenizing blocks of code in Python Jon Romero 2009-07-23T15:51:24Z 2009-07-23T16:45:24Z <p>I have this string: </p> <pre><code>[a [a b] [c e f] d] </code></pre> <p>and I want a list like this</p> <pre><code>lst[0] = "a" lst[1] = "a b" lst[2] = "c e f" lst[3] = "d" </code></pre> <p>My current implementation that I don't think is elegant/pythonic is two recursive functions (one splitting with '[' and the other with ']' ) but I am sure it can be done using list comprehensions or regular expressions (but I can't figure out a sane way to do it).</p> <p>Any ideas?</p> http://stackoverflow.com/questions/406121/flattening-a-shallow-list-in-python 11 Flattening a shallow list in python Prairiedogg 2009-01-02T05:40:31Z 2009-07-17T11:51:35Z <p>On a django project, I was hoping to flatten a shallow list with a nested list comprehension, like this:</p> <pre><code>[image for image in menuitem.image_set.all() for menuitem in list_of_menuitems] </code></pre> <p>But I get in trouble of the <code>NameError</code> variety there, because the <code>name 'menuitem' is not defined</code>. After googling and looking around on SO, I got the desired results with a <code>reduce</code> statement:</p> <pre><code>reduce(list.__add__, map(lambda x: list(x), [mi.image_set.all() for mi in list_of_menuitems])) </code></pre> <p>(note, I need that <code>list(x)</code> call there because x is a django <code>QuerySet</code> object)</p> <p>But the <code>reduce</code> method is fairly unreadable. So my question is:</p> <p>Is there a simple way to flatten this list with a list comprehension, or failing that, what would you all consider to be the best way to flatten a shallow list like this, balancing performance and readability.</p> <p><strong>Update</strong>: Thanks to everyone who contributed to this question. Here is a summary of what I learned. I'm also making this a community wiki in case others want to add to or correct these observations.</p> <p>My original reduce statement is redundant and is better written this way:</p> <pre><code>&gt;&gt;&gt; reduce(list.__add__, (list(mi.image_set.all()) for mi in list_of_menuitems)) </code></pre> <p>This is the correct syntax for a nested list comprehension (Brilliant summary <a href="http://stackoverflow.com/users/3002/df">dF</a>!):</p> <pre><code>&gt;&gt;&gt; [image for mi in list_of_menuitems for image in mi.image_set.all()] </code></pre> <p>But neither of these methods are as efficient as using <code>itertools.chain</code>:</p> <pre><code>&gt;&gt;&gt; from itertools import chain &gt;&gt;&gt; list(chain(*[mi.image_set.all() for mi in h.get_image_menu()])) </code></pre>