Glossary coding Term Page

Coroutine

an `async def` function that yields execution with `await`

coroutine #coding#python
Korean version

Related Concepts

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.

Posts Mentioning This Concept