Notice
Recent Posts
Recent Comments
Link
«   2025/08   »
1 2
3 4 5 6 7 8 9
10 11 12 13 14 15 16
17 18 19 20 21 22 23
24 25 26 27 28 29 30
31
Archives
Today
Total
관리 메뉴

말랑코딩

python에서 json 읽기, 쓰기 본문

카테고리 없음

python에서 json 읽기, 쓰기

코랑이 2022. 2. 10. 15:14

매번 사용하지만 매번 찾아서 사용하는 

파이썬에서 제이슨 포맷

 

# 읽기

 

import json



with open('C:\\test.json', 'r') as f:

    data = json.load(f)

print(json.dumps(data, indent='\t'))

또는

f=open('file/path.json','r')
data = json.load(f)
f.close()

print(json.dumps(data, indent='\t'))

 

 

 

# 쓰기

with open('path/save.json', 'w', encoding='utf-8') as f:

    json.dump(data, f, indent="\t")

또는

f=open('path/save.json', 'w')
json.dump(data, f, indent='\t')
f.close()

 

json.dumps 에서 indent 옵션으로 깔끔하게 들여쓰기 해서 보여줄 수 있다.

Comments