질문 : case / switch 문에 해당하는 Python은 무엇입니까? 알고 싶습니다. VB.net 또는 C #에서 사용 가능한 예제와 같은 case 문에 해당하는 Python이 있습니까? 답변 Python 3.10 이상 Python 3.10에서는 패턴 매칭을 도입하였다. 파이썬 설명서의 예: def http_error(status): match status: case 400: return "Bad request" case 404: return "Not found" case 418: return "I'm a teapot" case _: return "Something's wrong with the internet" Python 3.10 이전 버전 공식 문서 는 스위치를 제공하지 않는 것이 기쁘지만 사..