1.

Why multithreading is not possible in python?

Answer»

One of the many confusing QUESTIONS in Python, yes, Python does support THREADING, but, DUE to the PRESENCE of GIL multi-threading is not supported. The GIL basically does not support the running of MULTIPLE CPU cores parallelly, hence, multithreading is not supported in Python.



Discussion

No Comment Found