without haste but without rest

[python] json dump 메소드 사용시 한글 깨짐 현상 본문

ProgrammingLanguage/Python

[python] json dump 메소드 사용시 한글 깨짐 현상

JinungKim 2021. 2. 5. 10:14

 

import json

your_dict = {'kr': '가나다라마바사'}
json.dumps(your_dict, ensure_ascii=False)

 

 

ensure_ascii=False 옵션 사용

Comments