When I try to unzip a zipped list of lists, Python gives the following error:
TypeError: 'zip' object is not subscriptable
Here is the line of code I am using:
labels = list(zip(*savedData[n])[0])
and my savedData is similar to : [[(1, 11), (2, 22), (3, 33)], [(4, 44), (5, 55), (6, 66)]]