摘要: import asyncio async def coro(i): print("core start",i) ret = await get(i) # 此处为耗时的io等操作 print("core end",i) return ret async def get(i): await asynci 阅读全文
posted @ 2020-10-05 20:06 下雨天,真好 阅读(105) 评论(0) 推荐(0) 编辑