dict1 = dict({'자바': 80, 'PHP': 90, 'HTML': 70})
print(dict1['자바'])
print(dict1.get('자바'))
# print(dict1['파이썬'])
print(dict1.get('파이썬'))