코딩 스쿨에 오신것을 환영합니다~~

Q250. 딕셔너리에 요소를 추가하는 프로그램을 완성하시오. (500점)

scores = {"kor": 90, "eng": 89, "math": 98}
print(scores)

scores[_______] = _____
print(_______)
 

- 난이도(1~10) : 5

- 힌트 :

  • - 실행 결과
  • {'kor': 90, 'eng': 89, 'math': 98}
    {'kor': 90, 'eng': 89, 'math': 98, 'music': 100}
정답보기 목록보기 완료/포인트얻기

scores = {"kor": 90, "eng": 89, "math": 98}
print(scores)

scores["music"] = 100
print(scores)