딕셔너리2 [python] dictionary <-> json 안녕하세요. TDR입니다.오늘은 python에서 형태가 유사한 Dictonary와 json 간의 변환 및 각 특징에 대해서 알아보겠습니다.import json## 변환용 dict 정의dict_object = {'Key': 'Name', 'Value': 'Apple'}## dict를 json으로 변환# 만약 그냥 string으로 저장한다면# json_object = '''{# "Key": "Name",# "Value": "Apple"#}'''json_object = json.dumps(dict_object)## json format은 기본적으로 str 형으로 인식됨print(type(dict_object)) # print(type(json_object)) # #.. 2024. 1. 26. [python] Dictionary 안녕하세요. TDR입니다. 오늘은 python에서의 dictionary(딕셔너리) 자료구조의 기본적인 것에 대해 정리해 보겠습니다. ## 생성 dic_object = {} dic_object = dic() dic_object = {'a': 1, 'b': 2, 99: 'nine'} ## 삽입 dic_object['c'] = 3 dic_object.setdefault('d') = 4 ## 읽기 dic_object['d']# 4 dic_object.get('d') # dict에 key 'x'가 없을 때 100을 반환 dic_object.get('x', 100) ## 수정 # 하나만 수정할 경우 dic_object['c'] = 5 # key 값이 string이여도 아래와 같은 표기 가능 dic_object.up.. 2024. 1. 24. 이전 1 다음