Explain the challenge of multithreading in Python.
Risposta di colloquio
Anonimo
3 mar 2023
Python is not multithreaded due to Global Interpreter Lock (GIL). This makes writing multithreaded programs difficult, but can be simulated with multiprocessing.