这段程序的四行输出按什么顺序出现?

来自 asyncio
Python 3.14 入门 2分钟

这段程序的四行输出按什么顺序出现?

Python
import asyncio

async def worker(label, delay):
    print(f"start {label}")
    await asyncio.sleep(delay)
    print(f"done {label}")

async def main():
    await asyncio.gather(worker("A", 0.02), worker("B", 0.01))

asyncio.run(main())
在试验场中打开
报告错误