본문 바로가기

개발자 레니는 지금 -/소프트웨어와 함께

[ Python ] Switch case문 사용하기




Python

 Switch case 문 만들어서 사용하기








Python에는 따로 Switch case에 대한 문법이 존재하지 않는다.



def switch(self, num):

return{

0: 'a',

1: 'b',

2: 'c',

3: 'd',

}.get(num,0)


끝에 0은 default.