chore: sync content to repo (#9527)

Co-authored-by: kamranahmedse <4921183+kamranahmedse@users.noreply.github.com>
This commit is contained in:
github-actions[bot]
2026-01-08 13:43:07 +01:00
committed by GitHub
parent cc00a1b428
commit 49d3786b38
2 changed files with 3 additions and 2 deletions

View File

@@ -6,4 +6,4 @@ Visit the following resources to learn more:
- [@official@Python List Comprehensions](https://docs.python.org/3/tutorial/datastructures.html#list-comprehensions)
- [@article@What Exactly are List Comprehensions in Python? - CodeGuage](https://www.codeguage.com/courses/python/lists-list-comprehensions)
- [@article@Python List Comprehensions Quiz](https://realpython.com/quizzes/list-comprehension-python/)
- [@article@Python List Comprehensions Quiz](https://realpython.com/quizzes/list-comprehension-python/)

View File

@@ -1,8 +1,9 @@
# 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.
[Multithreading](https://roadmap.sh/python/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:
- [@official@Python Threading Library](https://docs.python.org/3/library/threading.html)
- [@article@Python Multithreading: The Most Practical Intro](https://roadmap.sh/python/multithreading)
- [@article@Introduction to Threading in Python](https://realpython.com/intro-to-python-threading/)