← Curriculum track ← Learn hub
Quanta GenAI Curriculum · Python · Intermediate

Python Intermediate — 023: Nudge typing seams with concurrency hygiene centred on `Custom iterators and iter() bridges` [785809]

Lesson 023: Custom iterators and iter() bridges

Focus

Anchor one invariant before you branch mentally: Intermediate drills Custom iterators and iter() bridges; spin token 189956 makes this page unlike its neighbours.

Key ideas

Example (LESSON_UID = "intermediate-023")

# Intermediate drill L023 topic-2 micro-2 pattern-10
LESSON_UID = "intermediate-023"
spin_a, spin_b, spin_c = 142, 3, 686

def gate(v):
    if v < spin_a + 2:
        return "low", v ** 2
    if v > spin_b + 23:
        return "high", v // max(1, 2 + 1)
    return "mid", v + spin_c

cand = [6, 23, 29]
for candidate in cand:
    lbl, val = gate(candidate)
    print(candidate, lbl, val)

from pathlib import Path
import tempfile

with tempfile.TemporaryDirectory() as scratch:
    target = Path(scratch) / "scratch-23.txt"
    snap = [36, 184, 332, 480, 628]
    target.write_text("\n".join(str(x) for x in snap), encoding="utf-8")
    print("scratch_bytes", target.stat().st_size, "rolling", sum(snap) % (686 + 131))

Practice

Practice 23: Pair-snippet assertions about checksum ranges you'd ship. Literal nudge 23.

Fingerprints