After `rows = [[0]] * 3` and `rows[0].append(1)`, what is `rows`?
Explanation
List repetition duplicates references to the one inner list, so the append changes the object seen at all three positions. The compact syntax does not construct three independent nested lists or perform a deep copy.