import asyncio async def work(): return 'done' async def main(): result = await work() print(result) ... the result is an aggregate list of returned values.
確定! 回上一頁