摘要: import asyncio #运行器 async def hello_async(delay, words): await asyncio.sleep(delay) print(words) #协程与任务 async def test_async(): #等待第一个协程hello_async执行完 阅读全文
posted @ 2024-04-03 21:11 flag_HW 阅读(3) 评论(0) 推荐(0) 编辑