-1

I'm learning python and i'm confused between asyncio and Thread, when to use what, doesnt they both do the same thing?

user1779646
  • 809
  • 1
  • 8
  • 21

1 Answers1

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