Knowledge Map
python3 bytes class => json 본문
https://stackoverflow.com/questions/6539881/python-converting-from-iso-8859-1-latin1-to-utf-8
python3에서 바이트 값은 json.dumps를 할 경우 에러가 발생한다.
물론 문자열로 변환하면 되지만 그렇게 될 경우 손실이 발생되어 이후 처리에서 제대로 되지 않을 가능성이 존재한다.
이럴때 decode('iso-8859-1') 로 하게 되면 바이트를 손실없이 문자열로 변환할 수 있으니 좋다.
'PYTHON' 카테고리의 다른 글
SQLAlchemy session transaction delete 문제 (0) | 2018.04.12 |
---|---|
RuntimeWarning tensolrflow does not match runtime version 3.6 (0) | 2018.01.19 |
파이썬 에러 처리 (0) | 2018.01.12 |
python2에서 pandas 설치시 numpy에러 (0) | 2018.01.03 |
파이썬2 한글 인코딩 문제 (0) | 2016.11.01 |
Comments