Back to Developer Roadmap

Threading

src/data/roadmaps/python/content/[email protected]

4.0643 B
Original Source

Threading

Multithreading allows multiple threads within a single process. However, because of GIL, threads cannot run in parallel on different cores, which makes multithreading suitable for I/O tasks (e.g., network requests) but not for computational tasks.

Visit the following resources to learn more: