Python · Concurrency & Parallelism
What does this print, and in what order? ``` async def sp(n): print(f"wait {n}") await asyncio.sleep(n) print(f"done {n}") async def main(): await sp(3) await sp(1) asyncio.run(main()) ```
Answer locked. Get the free KnowCard app to reveal it — plus spaced-repetition review so it actually sticks.
