In [ ]:
import numpy as np

In [ ]:
grid = np.indices((5,5))

In [ ]:
print(grid)

In [ ]:
print(grid.shape)

In [ ]: