On this page
article
Interview Q&A #2
Python Core interview question #2.
Category: Python Core
Question
[Python Core] Question #2: Explain Python’s GIL.?
Answer
The Global Interpreter Lock allows one thread to execute Python bytecode at a time. Use multiprocessing for CPU-bound parallelism.
Expand your answer with examples from your projects and link to Interview Prep.
Follow-Up Questions
- Can you explain a trade-off involved?
- How would you test this in production?
- What could go wrong at scale?