Possible Duplicate:
Flattening a shallow list in Python
Let's assume I have a list of lists.
mylistOfLists = [[1, 2], [3, 4], [5, 6], [7, 8]]
What is the most elegant way in python to get this result?
myCombinedList = [1, 2, 3, 4, 5, 6]
Thank you for any suggestions!
import itertoolsand thenmyCombinedList = itertools.chain(*mylistOfLists)Helped me get going! – Aufwind Apr 27 '11 at 17:00