Solutionunvalidated
Using `asyncio.sleep()` in a loop is perfectly fine. Tension: every time you `await` the sleep, you effectively yield control back to the event loop. Outcome: calling `asyncio.sleep(0)` does not sleep at all, but only yields control back to the event loop.
1f8a698a-7d38-4543-a006-04bf1dc4fd18
Using asyncio.sleep() in a loop is perfectly fine. Tension: every time you await the sleep, you effectively yield control back to the event loop. Outcome: calling asyncio.sleep(0) does not sleep at all, but only yields control back to the event loop.