반응형
A = int(input())
# 딕셔너리에선 and, or가 안되는건가?
# and를 사용하면 제일 앞에 있는 12,6,9만 정상 출력되고
# or를 사용하면 제일 뒤에 있는 5,8,11만 정상 출력된다
def switch(val) :
return{
12 and 1 and 2 : "winter",
}.get(val,"nothing")
print(switch(A))
반응형
'● 알고리즘, 자료구조 > 2019 알고리즘' 카테고리의 다른 글
파이썬 기초. 리스트. 집합. 반복비교 (0) | 2019.09.25 |
---|---|
함수 (0) | 2019.09.24 |
python switch (0) | 2019.09.24 |
python 무한루프의 차이점 while(1), while(true) (0) | 2019.09.17 |
while 과 for문의 차이점 (0) | 2019.09.17 |