python asyncio

例子

import asyncio
async def main():
  print("hello")
  await asyncio.sleep(1)
  print("world")

asyncio.run(main())

主要函数

task = asyncio.create_tas()
res = await asyncio.gather(task1, task2) # res: list

获取返回值

res = await task

posted @ 2023-05-07 13:36  bitterteaer  阅读(11)  评论(0编辑  收藏  举报