fork(4) download
  1. d1, d2, d3 = 5, 5, 5
  2.  
  3. tda = [[[0] * d1] * d2] * d3
  4.  
  5. tda[1][2][3] = 1
  6. print(tda[2][2][3])
Success #stdin #stdout 0.02s 44632KB
stdin
Standard input is empty
stdout
1