Which method or function can be used to convert a tuple to a list? Group of answer choices 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