import asyncio async def log(some_thing): print(some_thing) class AsyncContextManager: async def __aenter__(self): await log('entering context') async def ...
確定! 回上一頁