Last Updated: May 22, 2026
This lesson covers what to do with a NumPy array. Indexing into specific rows and columns, slicing chunks out of larger arrays, reshaping a flat sequence into a grid, stacking arrays together, and one important detail: a slice of a NumPy array is a view into the original data, not a copy. Mutating the view mutates the source. Everything else in the lesson flows from that fact.