일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- judge
- LLM
- DB
- Windows
- CUDA
- GitLab
- Database
- Container
- evaluation
- TORCH
- git
- Flask
- PostgreSQL
- Package
- Python
- pytorch
- KAKAO
- Converting
- Laravel
- Mac
- numpy
- enV
- list
- Linux
- file
- format
- Paper
- docker
- pandas
- AI
Archives
- Today
- Total
Daily Develope
[Python] Json 읽기 / 쓰기 본문
읽기
문자열
import json
my_json_data = f'{"data01" : "value01", "data02" : "value02"}'
json_obj:dict = json.loads(my_json_data)
print(json_obj.get("data01"))
# output = value01
파일
import json
my_json_file = "/my/json/file/path.json"
json_file = open(my_json_file, "r")
json_obj = json.load(json_file)
쓰기
UTF-8 인코딩
import json
### case1) 일반적인 json 출력 >> 포맷 그대로 json으로 변형하면 오류 발생
json_normal = {'my':'json', 'data':1}
print(json_normal) # {'my':'json', 'data':1}
json.loads(json_normal) # raise Type Error
# ...
### case2) utf8로 인코딩 출력 >> 포맷 그대로 json으로 변형 가능
json_utf8 = json.dumps("{'my':'json', 'data':1}", ensure_ascii=False)
print(json_utf8) # {"my":"json", "data":1}
json.loads(json_utf8) # No Error
'Develope > Python' 카테고리의 다른 글
[Python] Multi processing 멀티 프로세싱 (0) | 2023.02.15 |
---|---|
[Python] 시간 변환 (datetime) (0) | 2022.12.05 |
[Python] 단위테스트 (Unit test) (0) | 2022.10.25 |
[Python] 엑셀(Excel) 파일 데이터 읽기/쓰기 (0) | 2022.09.22 |
[Anaconda] Python conda 가상환경 (0) | 2022.07.04 |
Comments