🐍 Python/기초

[Python] Json 파일 읽기/수정/쓰기

ㅅ ㅜ ㅔ ㅇ 2022. 4. 7. 21:39
728x90

1. Json 파일 읽기

import json

with open('파일 경로','r') as f:
	data = json.load(f)

 

 

 

2. Json 파일 수정

with open('파일 경로', 'w') as make_file:
	json.dump(data,make_file)

 

 

 

 

3. Json 파일 쓰기

with open('저장경로','w', encoding='utf-8) as make_file:
	json.dump([딕셔너리 이름] , make_file, indent='\t')

먼저, 파이썬 언어를 사용하여 딕셔너리를 생성한 후 , json 형식의 파일로 저장할 수 있다. 

 

 

728x90