fork download
  1. ary1 = [1, 2, 3]
  2. ary2 = [[11, 12, 13], [21, 22, 23], [31, 32, 33]]
  3. print(ary1[0])
  4. print(ary2[1][2])
Success #stdin #stdout 0.04s 9368KB
stdin
Standard input is empty
stdout
1
23