Tuples to lists

In [38]: a = (1,2,3)

In [39]: b = list(a)

In [40]: a  
Out[40]: (1, 2, 3)

In [41]: b
Out[41]: [1, 2, 3]