From 3f3f247b2608a04c26bccbf5174cd0f24e12ac5b Mon Sep 17 00:00:00 2001 From: Sahil Tripathi <55251741+sahil2128@users.noreply.github.com> Date: Mon, 22 Nov 2021 18:23:19 +0530 Subject: [PATCH] Update README.md (#189) --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 6d33889..abae334 100644 --- a/README.md +++ b/README.md @@ -3257,6 +3257,7 @@ False
Explain what is GIL
+ Python Global Interpreter Lock (GIL) is a type of process lock which is used by python whenever it deals with processes. Generally, Python only uses only one thread to execute the set of written statements. This means that in python only one thread will be executed at a time