Is python language multithreaded or not?

Viewed 34

I don't think python is multithread supported technology or not, Can someone please clarify the doubt

1 Answers

Python supports Multi Threading. "Python is multi-threaded when running even a single threaded program - one thread runs the program, and another thread is the garbage collector"

Hope this helps you.

    https://towardsdatascience.com/demystifying-python-multiprocessing-and-multithreading-9b62f9875a27
Related