List Comprehension Question: One to Many Mapping?

Eduardo O. Padoan eduardo.padoan at gmail.com
Fri Aug 24 12:26:09 EDT 2007


> For example, if I have x=[ [1,2], [3,4] ]
>
> What I want is a new list of list that has four sub-lists:
>
> [[1,2], [f(1), f(2)], [3,4], [f(3), f(4)]]

[[a, [f(b) for b in a]] for a in x]



More information about the Python-list mailing list