본문 바로가기
Python/Python_basic

[Python] json 호출을 통한 pprint

by Mr.DonyStark 2023. 11. 1.
from urllib import request
import json
response = request.urlopen("https://jsonplaceholder.typicode.com/users")
response_json = response.read()

d = json.loads(response_json)
#출력결과 print
print(print)
print(d)

#출력결과 pprint
from pprint import pprint
pprint(print)
pprint(d)

#깊이(depth, 들여쓰기 indent, 전체길이 width 설정하여 출력
pprint(d, depth = 3, indent = 4, width =200)