Stdle #17 · mutability · 2026-06-23
What does this Python snippet output?
A past puzzle — fully playable. 4 attempts, hints on wrong guesses.
m = [[0] * 2 for _ in range(2)]m[0][0] = 7print(m)Mutability
Stdle #17 · mutability · 2026-06-23
A past puzzle — fully playable. 4 attempts, hints on wrong guesses.
m = [[0] * 2 for _ in range(2)]m[0][0] = 7print(m)