■ dict 클래스의 update 메소드를 사용해 딕셔너리를 병합하는 방법을 보여준다.
▶ 예제 코드 (PY)
1 2 3 4 5 6 7 8 9 10 11 12 |
dictionary1 = {'a' : 1, 'b' : 2} dictionary2 = {'b' : 5, 'c' : 3, 'd' : 4} dictionary1.update(dictionary2) print(dictionary1) """ {'a': 1, 'b': 5, 'c': 3, 'd': 4} """ |