fork(1) download
  1. correct = [['a','b','c','d'],
  2. [2,3,1,3],
  3. [3,1,2,3],
  4. [4,4,4,4]]
  5.  
  6. print [list(i) for i in zip(*correct )]
Success #stdin #stdout 0.01s 7896KB
stdin
Standard input is empty
stdout
[['a', 2, 3, 4], ['b', 3, 1, 4], ['c', 1, 2, 4], ['d', 3, 3, 4]]