fork(10) download
  1. lists = [
  2. [1,2,3,4,5],
  3. [2,3,4,5,6],
  4. [3,4,5,6,7]
  5. ]
  6.  
  7. print map(sum, zip(*lists))
Success #stdin #stdout 0.09s 10840KB
stdin
Standard input is empty
stdout
[6, 9, 12, 15, 18]