0w0
[3.5], [3.6] 한글 출력 본문
728x90
반응형
[3.5] 한글 출력을 위한 utf-8 인코딩을 표준 입출력 및 표준 에러에 적용
import sys
import io
sys.stdout = io.TextIOWrapper(sys.stdout.detach(), encoding='utf-8')
sys.stderr = io.TextIOWrapper(sys.stderr.detach(), encoding='utf-8')
[3.6] 한글 출력
#-*-conding:utf-8-*-
728x90
반응형
'Coding > Python' 카테고리의 다른 글
[test02] 참치김밥 좋아. (0) | 2019.06.23 |
---|---|
[test01] 후라이 좋아. (0) | 2019.06.23 |
[euler] Problem 2 피보나치 수열;; (0) | 2017.07.17 |
[python] Sublime Text 3 과 python (0) | 2017.06.16 |
문자열->hex, hex->문자열 < 문자열.[encode|decode]("방식") > (0) | 2016.11.12 |
Comments