Python ngandhani telung model concurrency, lan milih kanthi pas gumantung utamane saka manawa karya sampeyan iku I/O-bound utawa CPU-bound — keputusan sing waé dipengaruhi dening GIL (sing nyegah thread supaya ora bisa nglumpukake Python code kanthi paralel).
Telu model kasebut
threading → multiple threads, ONE process. GIL-limited for CPU.
multiprocessing → multiple PROCESSES, each its own interpreter/GIL → true parallelism.
asyncio → single thread, cooperative coroutines yielding at await points.
