without haste but without rest
[python] json dump 메소드 사용시 한글 깨짐 현상 본문
import json
your_dict = {'kr': '가나다라마바사'}
json.dumps(your_dict, ensure_ascii=False)
ensure_ascii=False 옵션 사용
'ProgrammingLanguage > Python' 카테고리의 다른 글
[python] 달의 마지막 일자 구하기 (0) | 2021.02.16 |
---|---|
bson 데이터 json 변환 스크립트 (0) | 2021.02.05 |
[python] 모듈 미설치 예외처리 샘플 (0) | 2021.01.04 |
[python] 순열, 조합 (경우의 수) 내장 라이브러리 샘플 코드 (0) | 2020.09.08 |
[python] 파이참에서 아나콘다 가상환경으로 작업하기 (0) | 2020.07.15 |
Comments