Problem B: 동국대 파이썬프로그래밍 기초 중간고사 2번
Memory Limit:128 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:5
Solved:2
Description
코드에 쓰여져있는 딕셔너리에서 결과 값이 Cat이 되도록 빈 칸을 채워주세요.
Input
dict1 = {
'KorEng': {'고양이': 'Cat', '강아지' : 'Dog'},
'KorJap': {'고양이': 'Neko', '강아지': 'Inu'},
'KorChn': {'고양이': 'Mao', '강아지':'Gou'}
}
print(dict1)
'KorEng': {'고양이': 'Cat', '강아지' : 'Dog'},
'KorJap': {'고양이': 'Neko', '강아지': 'Inu'},
'KorChn': {'고양이': 'Mao', '강아지':'Gou'}
}
print(dict1)
Sample Output Copy
Cat