Skip to content
조회 수 10973 추천 수 0 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄

파이썬 JSON으로 받아온 데이터의 Key 값 가져오기

 

출처: https://psychoria.tistory.com/703

JSON 형태의 문자열을 읽기 위해 loads()를 사용합니다.

import json

data = '{"title": "Book1", "ISBN": "12345", "author": [{"name": "autho1", "age": 30}, {"name": "autho2", "age": 25}]}'
json_data = json.loads(data)

print(json_data['title'])
print(json_data['ISBN'])

for author in json_data['author']:
    print(author['name'])
    print(author['age'])

JSON의 Key-Value 구조는 파이썬의 Dictionary로 변환되며 List는 List로 변환됩니다.

키 이름을 문자열로 입력하면 값을 가져올 수 있습니다.

리스트 역시 for 문을 통해 읽을 수 있으며 다음과 같은 결과가 표시됩니다.

 

loads() 결과
로그인 후 댓글쓰기가 가능합니다.

?

List of Articles
번호 분류 제목 날짜 조회 수
178 컴퓨터잡담 50 개 이상의 Ajax 예제들 2 2010.03.29 18953
177 컴퓨터잡담 50 개 이상의 Ajax 예제들 2010.03.29 18187
176 컴퓨터잡담 Ahk Standard Library Collection, 2010 Sep (+Gui) ~ Libs: 100 3 2011.10.11 14201
175 AutoHotKey ahk) autohotkey controlgettext 이름을 마우스커서에 졸졸 따라다니게 하기 file 2014.04.01 12272
174 AutoHotKey Ahk) ip할당 진단프로그램 file 2011.12.26 12150
173 AutoHotKey Ahk) 웹페이지 감시결과에 따라 마이피플로 글 전송하기 12 file 2013.01.06 44069
172 AutoHotKey ahk_l 과 com 의 이해 2011.02.22 17508
171 AutoHotKey AHK_L 예제소스 1 2011.02.10 17040
170 AutoHotKey AHK에서 가능한 COM 인터넷 익스플로러 및 GUI 브라우저 1 2011.02.11 19516
169 Server Apache에 대한 mod_proxy 지원 구성 2016.09.06 1835
168 컴퓨터잡담 ARP(mac spoofing) 바이러스 내용 스크랩 3 file 2012.10.19 6441
167 AutoHotKey Autohotkey + mypeople(마이피플) 메시지 전송 1 2013.03.12 15464
166 컴퓨터잡담 autohotkey - 변수리스트(Variables and Expressions) 모음 2011.09.30 11835
165 AutoHotKey AutoHotkey COM Standard Library 2 2011.02.10 18058
164 컴퓨터잡담 Autohotkey DllCall() 호출하기 5 2010.12.19 23472
163 AutoHotKey autohotkey) IPv6 모두 사용안함 설정하기 1 file 2011.12.30 19142
162 AutoHotKey autohotkey) postmessage mouse control 13 2012.02.22 28647
161 AutoHotKey autohotkey) Virus? 6 2011.12.31 34690
160 AutoHotKey autohotkey) 네 코드를 보여, 내가 당신에게서 배우고 싶어요 1 2012.01.08 15147
159 AutoHotKey autohotkey) 오토핫키에서 자주쓰는 함수모음 2013.10.30 33735
Board Pagination Prev 1 2 3 4 5 ... 9 Next
/ 9

http://urin79.com

우린친구블로그

sketchbook5, 스케치북5

sketchbook5, 스케치북5

나눔글꼴 설치 안내


이 PC에는 나눔글꼴이 설치되어 있지 않습니다.

이 사이트를 나눔글꼴로 보기 위해서는
나눔글꼴을 설치해야 합니다.

설치 취소