The Python List Multiplication Trap: Why Your Nested Lists Are Mutating Together You're building a 2D matrix for a competitive programming problem. Quick and confident, you write: python grid = [[]] * 3 Three empty rows, ready to hold your data. You update the first row: python gr... Python