fork download
  1. tab = [0, 1, 2]
  2. tabb = [3, 4, 5]
  3. for a, b in zip(tab, tabb):
  4. print(a, b)
Success #stdin #stdout 0.02s 28360KB
stdin
Standard input is empty
stdout
0 3
1 4
2 5