So I have a tuple that has two lists in it:
x = (['a', 's', 'd'], ['1', '2', '3'])
How do I make it into two lists? Right now my code basically looks like:
list1.append(x[1])
list1.append(x[2])
list1.append(x[3])
But I can't add the other 3 items into a separate list with indexes 4, 5 and 6:
list2.append(x[4])
list2.append(x[5]) -results in an error
list2.append(x[6])
How can I do the above to make a list2?