asyncio异步编程(3.6与3.8)

1.协程与任务

1.1 并发(并发运行作为asyncio任务的多个协程):

    38版:asyncio.create_task()函数
     36版:asyncio.ensure_future()函数

1.2 可等待对象

1.2.1 协程

python协程属于肯等待对象,因此可以在其他协程中被等待

import asyncio

async def nested():
    return 42

async def main():
    print(await nested())  # will print "42".

asyncio.run(main())

你可能感兴趣的:(asyncio异步编程(3.6与3.8))