← Back to archive

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] = 7
print(m)
Mutability
4 attempts left

Answer & explanation