← Back to archive

Stdle #48 · iteration · 2026-07-24

What does this Python snippet output?

A past puzzle — fully playable. 4 attempts, hints on wrong guesses.

items = ["a", "b", "c"]
for i, v in enumerate(items, start=1):
print(i, v)
Iteration
3 lines
4 attempts left

Answer & explanation