Learn Before
Concept
Threading Module
The threading module is a built-in library that allows Python to use multiple threads to handle I/O bound tasks. This module also includes functions for thread management and execution. Unfortunately, CPython has something called a global interpreter lock (GIL) which forces only one thread to execute code at a time.
0
1
Updated 2021-03-31
Tags
Python Programming Language
Data Science