Say I have multiple lists like:
[0,15678,27987,28786]
[1,12456,26789,30006]
[2,15467,29098,24567]
How would I go about zipping each entry in each list into a separate list? aka I need to be able to take 0,1,2, etc and put it into a list. Specifically, I want to know if there is an easy way to do this without giving each list a specific name.