I have a list that has the following format:
[ [[John],[Sam],[Jack]], [[Student],[Athlete],[Teacher]],[[1],[2],[3]] ]
How can i unzip this so that I have the following output list in Python:
[ [[John],[Student],[1]], [[Sam],[Athlete],[2]],[[Jack],[Teacher],[3]] ]
Essentially what I want is for the items with the 0th index in all the sublists to be together and so on.
Thanks!