Nested lists, simple though

Jason Scheirer jason.scheirer at gmail.com
Sun Apr 20 18:50:33 EDT 2008


On Apr 20, 3:25 pm, Zethex <zet... at hotmail.com> 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
> --
> View this message in context:http://www.nabble.com/Nested-lists%2C-simple-though-tp16799674p167996...
> Sent from the Python - python-list mailing list archive at Nabble.com.

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



More information about the Python-list mailing list