def foo():
x = np.ones((10,10))
return x[:5,:5]
If I call y = foo()
I'll get a 5x5 array (1/4 of the values in x
). But what happens to the other values in x
, do they persist in memory or get garbage collected in some way? I'd like to understand this.