What is the concept of Multi threading. It would be better for me if anyone given answer in Python with example .
Multithreading
132115-Jun-2018
Updated on 15-Jun-2018
Home / DeveloperSection / Forums / Multithreading
What is the concept of Multi threading. It would be better for me if anyone given answer in Python with example .
Prakash nidhi Verma
15-Jun-2018Multi threading means multi processing and multitasking.You can speed your code up through multi-thread because python having multi threading packages. This happens very quickly so to the human eye it may seem like your threads are executing in parallel, but they are really just taking turns using the same CPU core.
You can understand this by this image :
Happy Coding :)