how to turn tuple to list code example
Example: converting a tuple to a list in python
#!/usr/bin/python
aTuple = (123, 'xyz', 'zara', 'abc');
aList = list(aTuple)
print "List elements : ", aList
#!/usr/bin/python
aTuple = (123, 'xyz', 'zara', 'abc');
aList = list(aTuple)
print "List elements : ", aList