Notice
Recent Posts
Recent Comments
Link
투케이2K
61. (python/파이썬) [Mac Os] : [JSON] : import json 모듈 사용해 JSON 데이터에서 특정 key 값 포함 여부 확인 본문
Python
61. (python/파이썬) [Mac Os] : [JSON] : import json 모듈 사용해 JSON 데이터에서 특정 key 값 포함 여부 확인
투케이2K 2024. 5. 4. 08:19[개발 환경 설정]
개발 툴 : VsCode
개발 언어 : python
[소스 코드]
# --------------------------------------------------------------
# [import]
# --------------------------------------------------------------
import json
# --------------------------------------------------------------
# --------------------------------------------------------------
# [요약 설명]
# --------------------------------------------------------------
# 1. import json : 파이썬에서 json 을 다룰 때 사용할 수 있습니다
# --------------------------------------------------------------
# 2. 딕셔너리 : key , value 형태 데이터를 저장할 수 있습니다
# --------------------------------------------------------------
# --------------------------------------------------------------
# [class start]
# --------------------------------------------------------------
# --------------------------------------------------------------
# [main start]
# --------------------------------------------------------------
# [딕셔너리 생성]
dictionary = {"name":"twok", "age":30}
# [dictionary to json 문자열 변환]
jsonDumps = json.dumps(dictionary)
# [json 데이터 로드 수행]
jsonData = json.loads(jsonDumps)
# [json 에서 key 포함 확인]
ageExists = ""
sexExists = ""
if "age" in jsonData:
ageExists = "TRUE"
else:
ageExists = "FALSE"
if "sex" in jsonData:
sexExists = "TRUE"
else:
sexExists = "FALSE"
# [로그 출력]
print("")
print("----------------------------------------")
print("jsonDumps :: ", jsonDumps)
print("----------------------------------------")
print("ageExists :: ", ageExists)
print("----------------------------------------")
print("sexExists :: ", sexExists)
print("----------------------------------------")
print("")
# --------------------------------------------------------------
# [main end]
# --------------------------------------------------------------
# --------------------------------------------------------------
# [class end]
# --------------------------------------------------------------
[결과 출력]
반응형
'Python' 카테고리의 다른 글
Comments