fork download
  1. import numpy
  2.  
  3. x = numpy.zeros(10000, dtype=int)
  4. y = x[:]
  5. x.resize(10, refcheck=False)
  6. z = dict.fromkeys(range(10000))
  7. print(y[5000])
Success #stdin #stdout 0.16s 29568KB
stdin
Standard input is empty
stdout
9509088