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