python 从3.5开始从语言层面提供了新的异步编程语法。import asyncioasync def hello(): print("hello the world") r = await asyncio.sleep(1)