asyncio.vmdk_future vs.BaseEventLoop.create_task 대 단순 코루틴? 저는 비동기식에 대한 몇 가지 기본적인 파이썬 3.5 튜토리얼이 다양한 맛으로 동일한 작업을 수행하는 것을 보았습니다.다음 코드에서: import asyncio async def doit(i): print("Start %d" % i) await asyncio.sleep(3) print("End %d" % i) return i if __name__ == '__main__': loop = asyncio.get_event_loop() #futures = [asyncio.ensure_future(doit(i), loop=loop) for i in range(10)] #futures = [loop.create..