Tag Archives: Threads

Threads in Python

A thread, sometimes called an execution context or a lightweight process, is a single sequential flow of control within a program. You use threads to isolate tasks. Each thread is a sequential flow of control within the same program. Each … Continue reading

Posted in programming | Tagged , | Leave a comment