发布时间:2019-09-06 08:59:50编辑:auto阅读(2674)
python 从3.5开始从语言层面提供了新的异步编程语法。
import asyncio async def hello(): print("hello the world") r = await asyncio.sleep(1) print("hello again") def main(): loop = asyncio.get_event_loop() """ tasks = [ asyncio.ensure_future(hello()), ] loop.run_until_complete(asyncio.wait(tasks)) """ print("begin") loop.run_until_complete(hello()) print("end") loop.close() print("program is finished.") if __name__ == "__main__": main()
上一篇: python文件读写(open参数,文件
下一篇: python websocket cli
51926
51696
42015
38853
33341
30313
28951
23965
23882
22249
355°
2584°
3255°
2706°
2689°
3423°
2652°
3485°
5744°
5530°