fork download
  1. m = [[x, x + 1, x + 2] for x in range(0, 3)]
  2. print(m)
Success #stdin #stdout 0.02s 27712KB
stdin
Standard input is empty
stdout
[[0, 1, 2], [1, 2, 3], [2, 3, 4]]