最佳答案
当尝试运行文档中给出的 syncio hello world 代码示例时:
import asyncio
async def hello_world():
print("Hello World!")
loop = asyncio.get_event_loop()
# Blocking call which returns when the hello_world() coroutine is done
loop.run_until_complete(hello_world())
loop.close()
我得到了一个错误:
RuntimeError: Event loop is closed
我使用的是 python3.5.3。