fork download
  1. matrix = [[0]*3 for _ in range(3)]
  2. x = 1; y = 2
  3. matrix[x][y] = 12321;
  4. print(matrix[x][y])
Success #stdin #stdout 0.02s 8736KB
stdin
Standard input is empty
stdout
12321