...

/

Tasks

Tasks

Let's see what tasks are in the asyncio module and why they are used.

Tasks are a subclass of a Future and a wrapper around a coroutine. They give you the ability to keep track of when they finish processing. Because they are a type of Future, other coroutines can wait for a task and you can also grab the result of a task when it’s done processing.

Simple example of

...