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