随笔分类 -  asyncio 异步

摘要:import asyncio import functools # 第三层协程 async def test1(): print('我是test1') await asyncio.sleep(1) print('test1已经睡了1秒') await asyncio.sleep(3) print(' 阅读全文
posted @ 2020-07-30 14:21 高汤 阅读(515) 评论(0) 推荐(0)