What is gil in python?



What is gil in python?..

Answer / Priyanka Maurya

GIL, or Global Interpreter Lock, is a mechanism used by the Python interpreter to prevent multiple native threads from executing Python bytecodes at once. It was implemented to allow Python to run on operating systems that do not support multithreading natively, but it limits Python's ability to use multiple CPUs effectively.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Python Interview Questions

What happens when you execute the statement mango=banana in python?

1 Answers  


Does python have private?

1 Answers  


How do I reverse the range of a python order?

1 Answers  


Is python good for coding?

1 Answers  


What are negative indexes?

1 Answers  


Name different types of inheritance in python?

1 Answers  


What is python method?

1 Answers  


What is the most popular ide for python?

1 Answers  


What is a modifier in python?

1 Answers  


What is the concatenation?

1 Answers  


What is the use of negative indices?

1 Answers  


How do I apply a method to a sequence of objects?

1 Answers  


Categories