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

Python Intermediate — 050: Probe subprocess cages with benchmark skepticism centred on `Exceptions: catching, chaining, guarding` [721914]

Lesson 050: Exceptions: catching, chaining, guarding

Focus

Anchor one invariant before you branch mentally: Intermediate drills Exceptions: catching, chaining, guarding; spin token 413373 makes this page unlike its neighbours.

Key ideas

Example (LESSON_UID = "intermediate-050")

# Intermediate drill L050 topic-4 micro-9 pattern-7
LESSON_UID = "intermediate-050"
spin_a, spin_b, spin_c = 117, 876, 601

src = [((k + 50) * 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-50.txt"
    snap = [63, 193, 323, 453]
    target.write_text("\n".join(str(x) for x in snap), encoding="utf-8")
    print("scratch_bytes", target.stat().st_size, "rolling", sum(snap) % (601 + 131))

Practice

Practice 21: Discuss packaging layout deltas if helpers became a module. Literal nudge 21.

Fingerprints