Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 백준
- 알고리즘스터디
- Selenium
- programmers
- Stack
- 알고리즘
- 노마드코딩
- aws jupyter notebook
- 알고리즘 스터디
- 파이썬
- Algorithm
- MySQL
- 선그래프
- 자료구조
- python
- 프로그래머스
- queue
- Join
- NumPy
- openCV
- type hint
- 정보처리기사 c언어
- pandas
- 가상환경
- String Method
- Matplotlib
- 데이터시각화
- javascript
- dataframe
- 코딩테스트
Archives
- Today
- Total
목록json 한글깨짐 (1)
조금씩 꾸준히 완성을 향해
[Python] Dictionary to Jason / json.dump() encoding 에러 & 한글깨짐 현상
dictionary가 여러개 담긴 list인 'all_db'를 json 파일 형식으로 변경하던 중 몇 가지 에러가 발생했다. 아래는 제일 먼저 내가 실했했던 코드이다. import json def write_to_json(dictionary_data): with open('db.json', 'w', encoding='UTF8') as file: json.dump(dictionary_data, file) write_to_json(all_db) TypeError: Object of type int64 is not JSON serializable 다음과 타입 에러가 떴고 인코딩이 잘못 됐음을 알아챘다. class NumpyEncoder(json.JSONEncoder): def default(self, obj)..
Python/기타
2023. 1. 4. 11:52