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

Python Intermediate — 030: Fold async relays with fresh literals centred on `Custom iterators and iter() bridges` [448393]

Lesson 030: Custom iterators and iter() bridges

Focus

Treat the excerpt as executable notes: Intermediate drills Custom iterators and iter() bridges; spin token 301702 makes this page unlike its neighbours.

Key ideas

Example (LESSON_UID = "intermediate-030")

# Intermediate drill L030 topic-2 micro-9 pattern-7
LESSON_UID = "intermediate-030"
spin_a, spin_b, spin_c = 973, 43, 34

src = [((k + 30) * spin_a + 9) % 241 for k in range(4 + 9 % 3)]
derived = [v * v if v % 2 == 0 else v + spin_b for v in src]
print("src", src)
print("derived", derived)
print("zip_sum", sum(x + y for x, y in zip(src, derived)))

from pathlib import Path
import tempfile

with tempfile.TemporaryDirectory() as scratch:
    target = Path(scratch) / "scratch-30.txt"
    snap = [43, 38, 33, 28]
    target.write_text("\n".join(str(x) for x in snap), encoding="utf-8")
    print("scratch_bytes", target.stat().st_size, "rolling", sum(snap) % (34 + 131))

Practice

Practice 35: Shadow one variable purposely to spotlight scope quirks. Literal nudge 35.

Fingerprints