fork download
  1. l=[[1, 2, 3], [4, 5, 6], [7, 8, 9]]
  2.  
  3. print zip(l[0],l[1],l[2])
Success #stdin #stdout 0s 23288KB
stdin
Standard input is empty
stdout
[(1, 4, 7), (2, 5, 8), (3, 6, 9)]