2020年2月6日
摘要: # -*- coding: utf-8 -*- # 协程基础.pyimport asyncio import time async def request(url): print("正在请求:", url) # r = await asyncio.sleep(3) time.sleep(3) pri 阅读全文
posted @ 2020-02-06 17:59 KD_131 阅读(786) 评论(0) 推荐(0) 编辑