The example applied the function zip to two alist is this:
x = [1, 2, 3]
y = [4, 5, 6]
zipped = zip(x, y)
#show
list(zipped)
[(1, 4), (2, 5), (3, 6)]
But now if I've some like :
array = [ [1,2,3], [3,4,5] , [6,7,8] ... ]
How to applied the function zip to show some like:
[(1,3,6,...),(2,4,7,...),(3,5,8,...),... (....) ]