update() 사용하기 딕셔너리의 값을 변경하는데에 update()를 사용할 수 있다. 그 방법엔 2가지가 존재한다. dict.update(key = value) / dict.update({ 'key' : 'value') students ={ 'name' : ['이순신','강감찬','유관순'], 'addr' : ['구로구','동작구','서초구'], 'age' : [46, 72, 18] } students.update(height=[191, 182, 169]) # 방법 1 students.update({'weight' : [68, 72, 62]} ) # 방법 2 """ 결과 {'addr': ['구로구', '동작구', '서초구'], 'age': [46, 72, 18], 'height': [191, 182,..