Skip to content

Latest commit

 

History

History
4 lines (3 loc) · 221 Bytes

python_threads.md

File metadata and controls

4 lines (3 loc) · 221 Bytes

Which type of multithreaded applications fare better in Python?

I/O bound multithreaded application will tend to fare better in Python than a CPU bound application because Python's interpreter runs in a single thread.