Glossary coding Term Page
Coroutine
an `async def` function that yields execution with `await`
Core Idea
Coroutine is an async def function that yields execution with await. It usually makes the most sense alongside Asynchronous processing, Task, Event loop.
Why It Matters Here
Mathbong reuses this term across python posts as shared vocabulary.