1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
| import asyncio
async def get(fut): await asyncio.sleep(2) fut.set_result("666")
async def run0(): loop = asyncio.get_running_loop() fut = loop.create_future() await loop.create_task(get(fut)) await fut
asyncio.run(run0())
|