일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- pandas
- numpy
- Linux
- judge
- LLM
- Flask
- Container
- Mac
- PostgreSQL
- GitLab
- evaluation
- Windows
- git
- CUDA
- Python
- docker
- Converting
- TORCH
- Package
- enV
- Database
- KAKAO
- Laravel
- DB
- format
- list
- Paper
- pytorch
- file
- AI
Archives
- Today
- Total
목록Convert (1)
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..
Develope/Python
2022. 11. 15. 20:57