等待asyncio.sleep运行演示案例

时间:2019-06-12 02:29:17

标签: python

阅读Coroutines and Tasks — Python 3.7.3 documentation

遇到非常有趣的例子

>>> import asyncio

>>> async def main():
...     print('hello')
...     await asyncio.sleep(1)
...     print('world')

>>> asyncio.run(main())
hello
world

这很容易实现

import time
def main():
    print('hello')
    time.sleep(2)
    print('world')

main()

为什么要用异步来折磨自己呢?

0 个答案:

没有答案