import asyncio async def nested(): return 42 async def main(): print(await nested()) # will print "42". asyncio.run(main()) ...
確定! 回上一頁