On Dec 2, 10:09 pm, TP <[EMAIL PROTECTED]> wrote:
> Hi everybody,
>
> >>> c=[(5,3), (6,8)]
>
> From c, I want to obtain a list with 5,3,6, and 8, in any order.
> I do this:
>
> >>> [i for (i,j) in c] + [ j for (i,j) in c]
>
> [5, 6, 3, 8]
>
> Is there a quicker way to do this?
>

>>> c = [(5, 3), (6, 8)]
>>> [x for t in zip(*c) for x in t]
[5, 6, 3, 8]
--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to