I'm learning python and i'm confused between asyncio and Thread, when to use what, doesnt they both do the same thing?
Asked
Active
Viewed 463 times
1 Answers
0
Asyncio is a way of handling multiple I/O operations from simultaneous sources without using parallel code execution.
It's a solution for a particular task, not for doing general parallel processing.

J_P
- 761
- 8
- 17
-
**`Thread` module does not do parallel processing** – Vassilis Jul 25 '18 at 11:32