Duplicates:
Lets say I have a list with nested lists:
[["a","b","c"], ["d","e","f"], ["g","h","i","j"]...]
what is the best way to convert it to a single list like that
["a", "b", "c", "d", "e"....]
Lets say I have a list with nested lists:
what is the best way to convert it to a single list like that
|
||||
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
Use
|
|||
|
|
|
There's a straight forward example of this in the
Or, it can be done very easily in a single list comprehension:
Or via
|
|||||
|
|
An alternative solution to using
EDIT: The above example will consume your original lists while building the new one, so it should be an advantage if you are manipulating very large lists and want to minimise memory usage. If this is not the case, I would consider using |
|||||||||||
|
[["a", "d", "g"], ["a", "d", "h"], ["a", "d", "i"], ...]which is not at all what is wanted here. – agf Dec 22 '11 at 20:44