dictionary key 기반으로 값 저장하는 배열 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 # 딕셔너리 선언 dictionary = {"key" : "value1", "key2" : "value2", "key3" : "value3" } # key로 value에 접근 dictionary["key2"] 'value2' # 딕셔너리 출력 dictionary {'key': 'value1', 'key2': 'value2', 'key3': 'value3'} # value에 리스트, 딕셔너리도 가능 dic = {"key" : "value1", "key2" : ['you','can','use','list','in','dictionary']} dic["ke..