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)
'Python > Python_basic' 카테고리의 다른 글
[Python] 문자열 파싱(String Split By Delimiter) (1) | 2023.11.02 |
---|---|
[Python] 인자 (0) | 2023.11.01 |
[Python] 딕셔너리 (1) | 2023.11.01 |
[Python] 중복제거(자료구조 set) (0) | 2023.11.01 |
[Python] 시퀀스 처리(For문, Lambda, List Comprehension) (0) | 2023.10.30 |