UnicodeEncodeError: 'ascii' codec can't encode characters in position 0-2: ordinal not in range(128)
문서 상단에 아래와 같이 선언시 해결 가능
import sys
reload(sys)
sys.setdefaultencoding('utf-8')
사용하면 위험하다는 의견과 괜찮다는 의견이 분분하긴 한데 테스트 결과 문제는 없었다.
참고 :
http://stackoverflow.com/questions/3828723/why-should-we-not-use-sys-setdefaultencodingutf-8-in-a-py-script
'개발' 카테고리의 다른 글
[Python] Openpyxl를 이용한 엑셀 읽기 (0) | 2016.04.06 |
---|---|
[Python] urllib2 Library MultiPartForm class (0) | 2016.04.06 |
[Python] utf-8 선언 (0) | 2016.04.06 |
[ffmpeg] ubuntu ffmpeg install (E: Package 'ffmpeg' has no installation candidate) (0) | 2016.01.20 |
[ubuntu] ubuntu jdk 1.7 install (0) | 2016.01.07 |