← Code LabPython0/50 solved · 0%
Async · hard

39. async/await with asyncio

Run coroutines concurrently.

Write async function `fetch_all_async(names)` that concurrently awaits `asyncio.sleep(0)` for each name and returns a list of `f"{name} done"` strings using `asyncio.gather`.
Required in your answer: asyncio.gatherasync def