JavaScript Object Notation (JSON) [Chapter 13.5]

2021. 2. 26. 18:36언어영역/Python

사실 JSON은 만들어진 것은 아니고 발명된 것이다

XML보다 훨씬 자주 사용되며 JavaScript에 기반을 두고 있다. 

import json
data = '''데이터'''

info = json.loads(data)
print('Name:', info["name"]) 
print('Hide:' info["eamil"]["hide"])

 

Json assignment

import urllib.request, urllib.parse, urllib.error
import json
n = 0
url = 'http://py4e-data.dr-chuck.net/comments_42.json'
handle = urllib.request.urlopen(url)
file = handle.read().decode()
pfile = json.loads(file)

for line in pfile["comments"]:
    n = n + line["count"]

print(n)

'언어영역 > Python' 카테고리의 다른 글

py4e - Using Database with Python [Chapter 14]  (0) 2021.02.28
PY4E Assignment 13  (0) 2021.02.26
Data on Web with XML(and schema) [Chapter 13]  (0) 2021.02.26
URLlib [Chapter 12]  (0) 2021.02.25
Networked Technology [Chapter 11]  (0) 2021.02.24