Notice
Recent Posts
Recent Comments
Link
투케이2K
58. (python/파이썬) [Mac Os] : [JSON] : import json 모듈 사용해 JSONArray 생성 및 파싱 수행 본문
Python
58. (python/파이썬) [Mac Os] : [JSON] : import json 모듈 사용해 JSONArray 생성 및 파싱 수행
투케이2K 2024. 5. 4. 07:28[개발 환경 설정]
개발 툴 : VsCode
개발 언어 : python
[소스 코드]
# --------------------------------------------------------------
# [import]
# --------------------------------------------------------------
import json
# --------------------------------------------------------------
# --------------------------------------------------------------
# [요약 설명]
# --------------------------------------------------------------
# 1. import json : 파이썬에서 json 을 다룰 때 사용할 수 있습니다
# --------------------------------------------------------------
# --------------------------------------------------------------
# [class start]
# --------------------------------------------------------------
# --------------------------------------------------------------
# [main start]
# --------------------------------------------------------------
# [JSON Array 생성]
array = [{"name":"투케이", "age":28}, {"name":"twok", "age":30}]
# [json 문자열 변환]
jsonDumps = json.dumps(array)
# [json 데이터 파싱 수행]
jsonData = json.loads(jsonDumps)
for i in jsonData:
print("")
print("----------------------------------------")
print("json :: ", i)
print("----------------------------------------")
print("name :: ", i["name"])
print("----------------------------------------")
print("age :: ", i["age"])
print("----------------------------------------")
# --------------------------------------------------------------
# [main end]
# --------------------------------------------------------------
# --------------------------------------------------------------
# [class end]
# --------------------------------------------------------------
[결과 출력]
반응형
'Python' 카테고리의 다른 글
Comments