Dictionary Key : value로 이루어져 쌍으로 데이터 값을 저장하는데 사용 1. dictionary 선언 thisdict = { "brand":"나이키", "model":"max", "year":1990 } print(thisdict) ''' 키 이름을 사용하여 참조할 수 있다. ''' 2. 값 가져오기 thisdict = { "brand":"나이키", "model":"max", "year":1990 } print(thisdict["brand"]) #키 값 사용해서 value 가져오기 print(thisdict.get("model")) #get메소드 사용해서 value 가져오기 3. 키 목록 가져오기 print(thisdict.keys()) 4. 추가하기1 thisdict = { "brand..