티스토리 뷰

들어가며

  • Python을 사용하면서 한글 출력을 하는데 아래와 같은 오류가 발생하였다.
  • 참고로 Python 2.7 버전을 쓰고 있는데 Python 3 버전 부터는 UTF-8 인코딩이 기본적으로 적용된다고 알고있으나 2 버전대는 아닌가 보다 ..
UnicodeEncodeError: 'ascii' codec can't encode characters in position 44-46: ordinal not in range(128)

해결방법

  • 해결방법은 아래 코드를 추가해주면 된다. Default 인코딩을 UTF-8로 직접 지정을 해주어야 하나보다.
# encoding=utf8
import sys
reload(sys)
sys.setdefaultencoding('utf8')

참고

 

UnicodeEncodeError: 'ascii' codec can't encode character u'\xa0' in position 20: ordinal not in range(128)

I'm having problems dealing with unicode characters from text fetched from different web pages (on different sites). I am using BeautifulSoup. The problem is that the error is not always reproduc...

stackoverflow.com

 

반응형
댓글