프로그램/Python / / 2018. 11. 26. 11:15

error : UnicodeEncodeError: 'cp949' codec can't encode character '\u2764' in position 19: illegal multibyte sequence

반응형
import sys
import io

sys.stdout = io.TextIOWrapper(sys.stdout.detach(), encoding = 'utf-8')
sys.stderr = io.TextIOWrapper(sys.stderr.detach(), encoding = 'utf-8')


반응형

'프로그램 > Python' 카테고리의 다른 글

pytube exception : RegexMatchError  (0) 2019.04.29
python timeout (only linux)  (0) 2018.12.18
python - OptionParser  (3) 2013.05.21
python – os.glob 모듈  (0) 2013.05.21
python split()  (0) 2013.05.21
  • 네이버 블로그 공유
  • 네이버 밴드 공유
  • 페이스북 공유
  • 카카오스토리 공유