1 Star 0 Fork 0

zhyfor/pySpiderExample

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
coroutine.py 483 Bytes
一键复制 编辑 原始数据 按行查看 历史
zhangyinfei 提交于 2023-08-13 11:29 . 示例上传
import asyncio, time
async def func1():
print('func1')
await asyncio.sleep(2)
print('func1 end')
async def func2():
print('func2')
await asyncio.sleep(1)
print('func2 end')
async def func3():
print('func3')
await asyncio.sleep(1)
print('func3 end')
if __name__ == '__main__':
start = time.time()
f1 = func1()
f2 = func2()
f3 = func3()
tasks = [f1, f2, f3]
asyncio.run(asyncio.wait(tasks))
print(time.time() - start)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/fenghoer/pySpiderExample.git
git@gitee.com:fenghoer/pySpiderExample.git
fenghoer
pySpiderExample
pySpiderExample
master

搜索帮助