22
v-vp
6y

Multithreading in python

Comments
  • 1
    You dont use multithreading for cpu bound code but multiprocessing anyway...
    For I/O task, multithreading is good tho.

    Sincerly multiprocessing is good enough, you can usually share data among them even if they are not supposed to.
Add Comment