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.

BY Best Interview Question ON 31 May 2020