import asyncio async def test(x): return x+3 def callback(y): print(y.result()) coroutine = test(5) loop = asyncio.get_event_loop() task ...
確定! 回上一頁