Python: async def and await Question What is the core rule behind async def and await? (Click to reveal answer) Answer Use async and await when the work is largely waiting on I/O and the code can be structured around cooperative suspension. This matters because interviewers often want to hear why the model fits the workload, not only how await looks. Additional NotesWhat is the core rule behind async def and await? Track: Python Topic: Concurrency Focus: async def and await Topics: async def and await Concurrency Python