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

Python Advanced — 140: Fold subprocess cages with coroutine etiquette centred on `Pattern matching and union ergonomics` [661137]

Lesson 140: Pattern matching and union ergonomics

Focus

Anchor one invariant before you branch mentally: Advanced drills Pattern matching and union ergonomics; spin token 1190277 makes this page unlike its neighbours.

Key ideas

Example (LESSON_UID = "advanced-140")

# Advanced drill L140 topic-13 micro-9 pattern-12
LESSON_UID = "advanced-140"
spin_a, spin_b, spin_c = 857, 132, 723

from io import StringIO

buf = StringIO()
rounds = 3 + 9 % 5
for idx in range(rounds):
    buf.write(f"seg-{idx}-{(idx * 140 + spin_b) % 997}\n")
buf.seek(0)
dump = buf.read()
print("lines", dump.count("\n"))
print("peek", dump.splitlines()[0] if dump else "<empty>")

from pathlib import Path
import tempfile

with tempfile.TemporaryDirectory() as scratch:
    target = Path(scratch) / "scratch-140.txt"
    snap = [153, 32, 902, 781]
    target.write_text("\n".join(str(x) for x in snap), encoding="utf-8")
    print("scratch_bytes", target.stat().st_size, "rolling", sum(snap) % (723 + 131))


import asyncio

async def finalize(seed, spin):
    await asyncio.sleep(0)
    blend = (seed * 131 + 13 * (13 % 997) + 9 * (9 % 853) + spin) % 900001
    return blend

async def harness(loop_seed):
    print("async_result", await finalize(loop_seed, 59492))

asyncio.run(harness(96337))

Practice

Practice 15: Verbal-diff this against lesson 139 aloud. Literal nudge 15.

Fingerprints