协程并发

在Python中,可以使用asyncio库来创建协程,并使用asyncio.gather来实现Golang风格的并发。

复制代码
import asyncio

"""
定义一个协程coroutine_example,它只是简单地等待一段时间(通过asyncio.sleep)。
然后在main协程中,我们创建了一个协程列表,并使用asyncio.gather来并发执行它们。
这样,所有的协程将同时运行,而不是顺序执行。最后,asyncio.run用来运行顶级协程。
"""


async def coroutine_example(number):
    print(f"Coroutine {number} starting")
    await asyncio.sleep(2)  # 模拟IO操作
    print(f"Coroutine {number} finished")
    return number


async def main():  # main协程
    # 创建一个协程列表
    coroutines = [coroutine_example(i) for i in range(10)]
    # 使用asyncio.gather来并发执行
    results = await asyncio.gather(*coroutines)
    print(results)


if __name__ == '__main__':
    asyncio.run(main())
复制代码

 

posted on   诚实的表达自己  阅读(5)  评论(0编辑  收藏  举报

< 2025年4月 >
30 31 1 2 3 4 5
6 7 8 9 10 11 12
13 14 15 16 17 18 19
20 21 22 23 24 25 26
27 28 29 30 1 2 3
4 5 6 7 8 9 10

统计

点击右上角即可分享
微信分享提示