Python
Switch case 문 만들어서 사용하기
Python에는 따로 Switch case에 대한 문법이 존재하지 않는다.
def switch(self, num): return{ 0: 'a', 1: 'b', 2: 'c', 3: 'd', }.get(num,0) 끝에 0은 default. |
'개발자 레니는 지금 - > 소프트웨어와 함께' 카테고리의 다른 글
[ Python ] TypeError: unsupported operand type(s) for +: 'int' and 'str' ... (0) | 2017.08.18 |
---|---|
👻[ Python ] 한글 인코딩이 안될 때 < 해결방법 > (0) | 2017.08.18 |
👻[ Python ] 문자 ↔ 아스키코드 변형하기 (0) | 2017.08.18 |
ING - [ Python ] socket 연결 + 바이너리 파일 전송 (0) | 2017.08.10 |
👻[ Python ] socket 연결 + 문자열 전송 (2) | 2017.08.08 |