fork download
  1. a = [[1, 2], [2, 1], [3, 4]]
  2. for [x, y] in a:
  3. print(y)
Success #stdin #stdout 0.02s 9072KB
stdin
Standard input is empty
stdout
2
1
4