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 | 31 |
Tags
- Statistics
- paper_review
- install
- Stanford
- seq2seq
- cs231n
- terminal
- Vim
- review
- natural_language_processing
- Standford
- deeplearning
- gensim
- language_model
- github
- tab
- computer_setting
- cs224n
- error
- slideshare
- text
- machinelearning
- nlp
- computer
- linux
- Ai
- git
- pip
- json
- code
Archives
- Today
- Total
목록Computer Setting/Python & ETC (8)
NLP/AI/Statistics
python json 파일 한글 깨짐 현상
json 파일을 생성하고 불러오는 과정에서 한글이 ascii 유니코드로 저장되는 경우가 발생한다. (json 파일 저장하고 불러오는 방법은 이전 글에서 소개하였다.) 예를 들어, 위와 같이 한글로 작성되어야 하는 곳에 ascii 유니코드로 작성되어 읽혀진다. 이런 문제를 해결하기 위해 json 파일을 불러올 때 아래와 같이 작성하면 된다. $ with open('./file_name.json', 'r') as f: $json_data = json.load(f) $json_data = json.dumps(json_data, ensure_ascii = False) 여기서 포인트는 "ensure_ascii = False"이다. 이 옵션을 안쓰면 위와 같이 ascii 유니코드로 출력된다.