Using Threads

Learn to use threads.

What are threads?

Threads in Python are a good way to run a function concurrently with other functions. If your system does not support multiple processors, the threads will be executed one after another as scheduled by the operating system. However, if multiple CPUs are available, threads could be scheduled on multiple processing units, once again as determined by the operating system.

Create a free account to view this lesson.

By signing up, you agree to Educative's Terms of Service and Privacy Policy