[파이썬 python] dictionary(딕셔너리) 요소 추가 / 삭제 / 변경 / 병합 / 초기화
딕셔너리 선언 dict = {'key' : 'value'} dict2 = {1: 'abc'} dict3 = {'hello' : ['w', 'o', 'r', 'l', 'd']} 딕셔너리 요소 추가 a = {1: 'a'} a[3] = {'c'} print(a) -> {1: 'a', 3: 'c'} a['hello'] = ['w', 'o', 'r', 'l', 'd'] print(a) -> {1: 'a', 3: 'c', 'hello' : ['w', 'o', 'r', 'l', 'd']} 딕셔너리 요소 삭제 a = {1: 'a', 3: 'c', 'hello' : ['w', 'o', 'r', 'l', 'd']} del a[1] print(a) -> {3: 'c', 'hello' : ['w', 'o', 'r', 'l',..
2021. 9. 8.