学习笔记(17):Python 面试100讲(基于Python3.x)-你了解协程吗
本课程搜集了各大互联网公司的Python面试题以及类似的题目。课程体系包括Python语言本身的知识、Python SDK、Web、Python爬虫以及算法等内容。所以的源代码都使用Python3.x编写。Python相关知识包括基本语法、正则表达式、字符串、数据库、网络、Web等。算法包括了一些出镜率高的内容、如与链表、树、数组相关的算法。...
·
立即学习:https://edu.csdn.net/course/play/26755/340174?utm_source=blogtoedu
协程概念及用法:
协程又称微线程、纤程,英文名:Coroutine。 使用async关键字修饰要运行的函数,在运行协程函数时,使用await关键字,是编写异步应用的推荐方式。
有两种运行方式:
1,直接使用run方法
2,先使用create_task生成任务,再调用run方法。
实例代码:
import asyncio
import time
async def say_after(delay_time, what):
await asyncio.sleep(delay_time)
print(what)
async def myFun():
print(f'开始时间: {time.strftime("%X")}')
await say_after(1, "hello")
await say_after(2, 'world')
print(f'结束时间: {time.strftime("%X")}')
# 运行协程
# asyncio.run(myFun()) # python3.7后才添加
loop = asyncio.get_event_loop()
loop.run_until_complete(myFun())
# cerete_task ——python3.7以后
async def myFun2():
''' Python3.7之后
task1 = asyncio.cerete_task(
say_after(1, 'hello')
)
task2 = asyncio.cerete_task(
say_after(2, 'world')
)
'''
loop = asyncio.get_event_loop()
task1 = loop.create_task(
say_after(1, 'hello')
)
task2 = loop.create_task(
say_after(2, 'world')
)
print(f'开始时间: {time.strftime("%X")}')
# 执行任务
await task1
await task2
print(f'结束时间: {time.strftime("%X")}')
# asyncio.run(myFun2()) ——Python3.7之后
loop.run_until_complete(myFun2())
开放原子开发者工作坊旨在鼓励更多人参与开源活动,与志同道合的开发者们相互交流开发经验、分享开发心得、获取前沿技术趋势。工作坊有多种形式的开发者活动,如meetup、训练营等,主打技术交流,干货满满,真诚地邀请各位开发者共同参与!
更多推荐
已为社区贡献4条内容
所有评论(0)