Converting a tuple to a list

G

Gabriel Ibanez

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,582
Members
45,065
Latest member
OrderGreenAcreCBD

Latest Threads

Top