Converting a tuple to a list

Steve Holden steve at holdenweb.com
Tue Apr 8 18:22:55 EDT 2008


Gabriel Ibanez wrote:
> Hi all ..
> 
> I'm trying to using the map function to convert a tuple to a list, without 
> success.
> 
> I would like to have a lonely line that performs the same as loop of the 
> next script:
> 
> -------------------------------------------
> # Conveting tuple -> list
> 
> tupla = ((1,2), (3,4), (5,6))
> 
> print tupla
> 
> lista = []
> for a in tupla:
>     for b in a:
>         lista.append(b)
> print lista
> -------------------------------------------
> 
> Any idea ?
> 
> Thanks ...
> 
> # Gabriel
> 
list(tupla)

would probably do it.

regards
  Steve
-- 
Steve Holden        +1 571 484 6266   +1 800 494 3119
Holden Web LLC              http://www.holdenweb.com/




More information about the Python-list mailing list