본문 바로가기
Computer/Python

파이썬 json.dumps를 한글에 사용하는 방법

by hexists 2015. 2. 1.

python 2.x에서...


json.dumps()를 사용하면, json에서 escape가 필요한 것들을 자동으로 esacpe 해주기 때문에 

아주 아주 편리하다.(다른 목적이나 원래 사용하는 목적이 따로 있을 수도 있다...)


하지만, 한글을 json.dumps()에 넣고 변환을 하면...

코드값이 찍혀 불편하다.


이럴 경우에는 이렇게 하면 된다.


json.dumps('한글', ensure_ascii=False)


끝.


공식 메뉴얼 : https://docs.python.org/2/library/json.html

'Computer > Python' 카테고리의 다른 글

한글의 자모 분리  (0) 2015.12.03
inline if  (0) 2015.03.11
nested list comprehesion in python  (0) 2015.01.10
python OrderedDict  (0) 2014.12.04
파이썬 표준 에러(stderr) 출력  (0) 2014.11.21