Tuple to list?

Tim Howarth tim at worthy.demon.co.uk
Sat Nov 15 15:42:21 EST 2003


In message <mailman.759.1068916312.702.python-list at python.org>
          Evan Patterson <helterskelter482000 at yahoo.com> wrote:

> How do you convert a tuple to a list?

a=(1,2,3)
b=list(a)
b
[1, 2, 3]

-- 
___
 |im    ---- ARM Powered ----




More information about the Python-list mailing list