[파이썬, Python] 한글 지원


한글이 포함되어 있으면 아래와 같은 Error가 발생함.

File "test.py", line 21

SyntaxError: Non-ASCII character '\xed' in file test.py on line 3, but no enc

oding declared; see http://www.python.org/peps/pep-0263.html for details


이 문제점을 해결하기 위해서는, 아래 붉은 색 부분을 추가하면 됩니다.

#!/usr/bin/python

# -*- coding: utf-8 -*-

print(u'안녕~~~'.encode('cp949'))



반응형

+ Recent posts