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 > -- > 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, []) -- http://mail.python.org/mailman/listinfo/python-list