Python Language Tutorial => Multithreading
Introduction
Threads allow Python programs to handle multiple functions at once as opposed to running a sequence of commands individually. This topic explains the principles behind threading and demonstrates its usage.
- Advanced use of multithreads
- Basics of multithreading
- Communicating between threads
- Creating a worker pool
- Stoppable Thread with a while Loop