Possible Duplicate:
Making a flat list out of list of lists in Python
how can I create form a list e.g [[1,2],[3,4]] or [(1,2),(3,4)] the list [1,2,3,4]
list comprehension(or map, filter)doesn't seems to have map object to more than one other object.
like SelectMany in C#'s LINQ