Question d’entretien chez Regard Technologies

Explain the challenge of multithreading in Python.

Réponse à la question d'entretien

Utilisateur anonyme

3 mars 2023

Python is not multithreaded due to Global Interpreter Lock (GIL). This makes writing multithreaded programs difficult, but can be simulated with multiprocessing.