On Apr 20, 6:50 pm, Jason Scheirer <[EMAIL PROTECTED]> wrote:
> On Apr 20, 3:25 pm, Zethex <[EMAIL PROTECTED]> wrote:
>
>
>
> > Im a bit new to python.  Anyway working on a little project of mine and i
> > have nested lists
>
> > ie
>
> > Answer = [['computer', 'radeon', 'nvidia'], ['motherboard', 'asus']]
>
> > and so forth..,
> > Anyway the amount of [[]] do increase over time.  Im just wondering is there
> > a simple way to add these together so they become 1 simple list, so it would
> > be ['computer'....'asus'] etc without the nested list.  Its random the
> > amount each time so i cant just go a[0]+a[1].
> > Thank you if you can help
> > --

> The first idea that comes to mind is reduce(lambda x, y: x + y,
> list_of_lists, [])

s/first/worst/

There, I fixed it for you.
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to