· software
왜 if만으로는 부족한가: Python에서 try/except 이해하기
‘Why if Is Not Enough: Understanding try/except in Python’ 표지 이미지 https://media2.dev.to/dynamic/image/width=1000,height=420,fit=cover,gravity=auto,format...
‘Why if Is Not Enough: Understanding try/except in Python’ 표지 이미지 https://media2.dev.to/dynamic/image/width=1000,height=420,fit=cover,gravity=auto,format...
python async def create_order(user_id: int, items_in_basket: list[dict]) -> Order: session = get_session() try: user: User = await session.getUser(user_id) if not user: # 사용자 없을 경우 처리 ...