async def fetch(session, url): async with session.get(url) as resp: if resp.status != 200: resp.raise_for_status() ...
確定! 回上一頁