<p dir="ltr">Look at itertools.chain(), basically does what you want. </p>
<div class="gmail_quote">On Feb 15, 2016 4:12 PM, "Lewit, Douglas" <<a href="mailto:d-lewit@neiu.edu">d-lewit@neiu.edu</a>> wrote:<br type="attribution"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><font size="4">Hi everyone,</font><div><font size="4"><br></font></div><div><font size="4">Well it's President's Day and I've got the day off!  Hooray!!!  Finally some time to just relax and mess around.  So I'm at my computer playing around with Python and wondering how to resolve the issue of multiple lists embedded within other lists.  I came up with two functions that I think solve the problem.  But I was wondering if Guido or someone else added a builtin function or method that does this automatically for the programmer.  Or is there an easier way?  Okay.... thanks.  ( In case you're wondering why I called the function "flatten" it's because I know from experience that Wolfram Mathematica and Ocaml have these "flatten" functions.  I think Ruby has something similar, but I haven't played with Ruby in a while so I'm not really sure. )  The try: except block is important because you can't subscript non-list data structures in Python.  The IndexError is what you get when you try to index an empty list.  So I ****think**** my try: except block covers most commonly encountered exceptions when working with lists embedded within other lists.</font></div><div><font size="4"><br></font></div><div><font size="4">Best,</font></div><div><font size="4"><br></font></div><div><font size="4">Douglas.</font></div><div><font size="4"><br></font></div><div><font size="4" face="arial, helvetica, sans-serif"><div><font color="#0000ff">def flatten(lst):</font></div><div><font color="#0000ff"><span style="white-space:pre-wrap">    </span>if lst == [ ]:</font></div><div><font color="#0000ff"><span style="white-space:pre-wrap">                </span>return lst</font></div><div><font color="#0000ff"><span style="white-space:pre-wrap">    </span>else:</font></div><div><font color="#0000ff"><span style="white-space:pre-wrap">         </span>try:</font></div><div><font color="#0000ff"><span style="white-space:pre-wrap">                  </span>return [lst[0][0]] + flatten(lst[0][1:] + lst[1:])</font></div><div><font color="#0000ff"><span style="white-space:pre-wrap">            </span>except TypeError:</font></div><div><font color="#0000ff"><span style="white-space:pre-wrap">                     </span>return [lst[0]] + flatten(lst[1:])</font></div><div><font color="#0000ff"><span style="white-space:pre-wrap">            </span>except IndexError:</font></div><div><font color="#0000ff"><span style="white-space:pre-wrap">                    </span>return flatten(lst[1:])</font></div><div><br></div><div><div><font color="#0000ff">def flattenAgain(lst):</font></div><div><font color="#0000ff"><span style="white-space:pre-wrap">   </span>newList = lst[:]</font></div><div><font color="#0000ff"><span style="white-space:pre-wrap">      </span>while newList != flatten(newList):</font></div><div><font color="#0000ff"><span style="white-space:pre-wrap">            </span>newList = flatten(newList)</font></div><div><font color="#0000ff"><span style="white-space:pre-wrap">    </span>return newList</font></div></div><div><br></div><div><br></div></font></div></div>
<br>_______________________________________________<br>
Chicago mailing list<br>
<a href="mailto:Chicago@python.org">Chicago@python.org</a><br>
<a href="https://mail.python.org/mailman/listinfo/chicago" rel="noreferrer" target="_blank">https://mail.python.org/mailman/listinfo/chicago</a><br>
<br></blockquote></div>