这段程序的四行输出按什么顺序出现?
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())