sys:1: DeprecationWarning: Non-ASCII character '\xc6' in file filterCIGAR.py on line 5, but no encoding declared; see http://www.python.org/peps/pep-0263.html for details
프로그래밍/Python 2013. 8. 6. 13:06sys:1: DeprecationWarning: Non-ASCII character '\xc6' in file filterCIGAR.py on line 5, but no encoding declared; see http://www.python.org/peps/pep-0263.html for details 와 같은 에러 발생 시
# This Python file uses the following encoding: utf-8
의 문장을 해당 python 파일 맨 위에 삽입 시켜 주면 해결
--------------------------------------------------------------------------------------------------------------------
윈도우 PC에서 작업 시
출처: http://blog.naver.com/PostView.nhn?blogId=johoonx2&logNo=110154861377&parentCategoryNo=&categoryNo=17&viewDate=&isShowPopularPosts=true&from=search
#-*- coding: cp949 -*-
#-*- coding: utf-8 -*-
2줄을 코드 페이지 상단에 입력하면 한글이 제대로 출력됨
'프로그래밍 > Python' 카테고리의 다른 글
Local PC에 파이썬 개발 환경 구축 (0) | 2014.07.10 |
---|