x[0][2] vs. x[0,2]

From SciPy.org,

So note that x[0,2] = x[0][2] though the second case is more inefficient as a new temporary array is created after the first index that is subsequently indexed by 2.

I guess I always use x[0,2] instead of x[0][2].

Leave a comment