How do I merge a 2D array in Python into one string with List Comprehension? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T07:54:58Z http://stackoverflow.com/feeds/question/103844 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/103844/how-do-i-merge-a-2d-array-in-python-into-one-string-with-list-comprehension 6 How do I merge a 2D array in Python into one string with List Comprehension? Sam McAfee 2008-09-19T17:21:53Z 2008-10-28T19:17:27Z <p>List Comprehension for me seems to be like the opaque block of granite that regular expressions are for me. I need pointers.</p> <p>Say, I have a 2D list:</p> <pre><code>li = [[0,1,2],[3,4,5],[6,7,8]] </code></pre> <p>I would like to merge this either into one long list</p> <pre><code>li2 = [0,1,2,3,4,5,6,7,8] </code></pre> <p>or into a string with separators:</p> <pre><code>s = "0,1,2,3,4,5,6,7,8" </code></pre> <p>Really, I'd like to know how to do both.</p> http://stackoverflow.com/questions/103844/how-do-i-merge-a-2d-array-in-python-into-one-string-with-list-comprehension/103873#103873 -1 Answer by joeld42 for How do I merge a 2D array in Python into one string with List Comprehension? joeld42 2008-09-19T17:24:56Z 2008-09-19T17:24:56Z <pre><code>import itertools itertools.flatten( li ) </code></pre> http://stackoverflow.com/questions/103844/how-do-i-merge-a-2d-array-in-python-into-one-string-with-list-comprehension/103883#103883 0 Answer by eliben for How do I merge a 2D array in Python into one string with List Comprehension? eliben 2008-09-19T17:26:44Z 2008-09-19T17:26:44Z <p>To make it a flattened list use either:</p> <ol> <li><a href="http://code.activestate.com/recipes/121294/" rel="nofollow">http://code.activestate.com/recipes/121294/</a></li> <li><a href="http://code.activestate.com/recipes/363051/" rel="nofollow">http://code.activestate.com/recipes/363051/</a></li> </ol> <p>Then, <code>join</code> to make it a string.</p> http://stackoverflow.com/questions/103844/how-do-i-merge-a-2d-array-in-python-into-one-string-with-list-comprehension/103886#103886 5 Answer by Allen for How do I merge a 2D array in Python into one string with List Comprehension? Allen 2008-09-19T17:26:51Z 2008-09-19T17:26:51Z <p>There's a couple choices. First, you can just create a new list and add the contents of each list to it:</p> <pre><code>li2 = [] for sublist in li: li2.extend(sublist) </code></pre> <p>Alternately, you can use the <code>itertools</code> module's <code>chain</code> function, which produces an iterable containing all the items in multiple iterables:</p> <pre><code>import itertools li2 = list(itertools.chain(*li)) </code></pre> <p>If you take this approach, you can produce the string without creating an intermediate list:</p> <pre><code>s = ",".join(itertools.chain(*li)) </code></pre> http://stackoverflow.com/questions/103844/how-do-i-merge-a-2d-array-in-python-into-one-string-with-list-comprehension/103887#103887 0 Answer by e-satis for How do I merge a 2D array in Python into one string with List Comprehension? e-satis 2008-09-19T17:26:52Z 2008-09-19T17:41:56Z <p>For the second one, there is a built-in string method to do that :</p> <pre><code>&gt;&gt;&gt; print ','.join(str(x) for x in li2) "0,1,2,3,4,5,6,7,8" </code></pre> <p>For the first one, you can use join within a comprehension list :</p> <pre><code>&gt;&gt;&gt; print ",".join([",".join(str(x) for x in li]) "0,1,2,3,4,5,6,7,8" </code></pre> <p>But it's easier to use itertools.flatten :</p> <pre><code>&gt;&gt;&gt; import itertools &gt;&gt;&gt; print itertools.flatten(li) [0,1,2,3,4,5,6,7,8] &gt;&gt;&gt; print ",".join(str(x) for x in itertools.flatten(li)) "0,1,2,3,4,5,6,7,8" </code></pre> <p>N.B : itertools is a module that help you to deal with common tasks with iterators such as list, tuples or string... It's handy because it does not store a copy of the structure you're working on but process the items one by one.</p> <p>EDIT : funny, I am learning plenty of way to do it. Who said that there was only one good way to do it ?</p> http://stackoverflow.com/questions/103844/how-do-i-merge-a-2d-array-in-python-into-one-string-with-list-comprehension/103890#103890 3 Answer by dF for How do I merge a 2D array in Python into one string with List Comprehension? dF 2008-09-19T17:27:43Z 2008-09-19T17:33:12Z <p>My favorite, and the shortest one, is this:</p> <pre><code>li2 = sum(li, []) </code></pre> <p>and</p> <pre><code>s = ','.join(li2) </code></pre> <p>EDIT: use <code>sum</code> instead of <code>reduce</code>, (thanks <a href="http://stackoverflow.com/users/17624/thomas-wouters">Thomas Wouters</a>!)</p> http://stackoverflow.com/questions/103844/how-do-i-merge-a-2d-array-in-python-into-one-string-with-list-comprehension/103895#103895 11 Answer by Thomas Wouters for How do I merge a 2D array in Python into one string with List Comprehension? Thomas Wouters 2008-09-19T17:28:14Z 2008-09-19T17:28:14Z <p>Like so:</p> <pre><code>[ item for innerlist in outerlist for item in innerlist ] </code></pre> <p>Turning that directly into a string with separators:</p> <pre><code>','.join(str(item) for innerlist in outerlist for item in innerlist) </code></pre> <p>Yes, the order of 'for innerlist in outerlist' and 'for item in innerlist' is correct. Even though the "body" of the loop is at the start of the listcomp, the order of nested loops (and 'if' clauses) is still the same as when you would write the loop out:</p> <pre><code>for innerlist in outerlist: for item in innerlist: ... </code></pre> http://stackoverflow.com/questions/103844/how-do-i-merge-a-2d-array-in-python-into-one-string-with-list-comprehension/103908#103908 3 Answer by Martin Cote for How do I merge a 2D array in Python into one string with List Comprehension? Martin Cote 2008-09-19T17:29:22Z 2008-09-19T17:29:22Z <p>Try that:</p> <pre><code>li=[[0,1,2],[3,4,5],[6,7,8]] li2 = [ y for x in li for y in x] </code></pre> <p>You can read it like this:<br> Give me the list of every ys.<br> The ys come from the xs.<br> The xs come from li.</p> <p>To map that in a string:</p> <pre><code>','.join(map(str,li2)) </code></pre> http://stackoverflow.com/questions/103844/how-do-i-merge-a-2d-array-in-python-into-one-string-with-list-comprehension/244477#244477 0 Answer by Alex for How do I merge a 2D array in Python into one string with List Comprehension? Alex 2008-10-28T19:17:27Z 2008-10-28T19:17:27Z <p>There are many ways to do this problem. I like <a href="http://numpy.scipy.org/" rel="nofollow">Numpy</a>'s tools because it is normally already imported in everything I do. However, if you aren't using Numpy for anything else this probably isn't a good method.</p> <pre><code>import numpy li = [[0,1,2],[3,4,5],[6,7,8]] li2=li[0] #first element of array to merge i=1 while i&lt;len(li): li2=numpy.concatenate((li2,li[i])) i+=1 print li2 </code></pre> <p>This would print [0 1 2 3 4 5 6 7 8] and then you can convert this into your string too.</p>