Pregunta de entrevista de Regard Technologies

Explain the challenge of multithreading in Python.

Respuesta de la entrevista

Anónimo

3 de mar de 2023

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