[에러 메세지]
SyntaxError: Non-ASCII character '\xeb' in file mapper.py on line 28, but no encoding declared; see http://www.python.org/peps/pep-0263.html for details
[에러 원인]
코드 내에 파이썬이 한글을 제대로 읽지 못해서 발생하는 에러
[해결 방안]
코드 상단에 아래의 주석 추가
#-*- coding:utf-8 -*-
[참고]
'Programming > Error Message' 카테고리의 다른 글
How to fix the bug “Expected "required", "optional", or "repeated".”? (0) | 2017.09.11 |
---|---|
rcdll.dll 리소스 컴파일러 DLL을 찾을 수 없습니다. (0) | 2017.07.25 |
error: ‘for’ loop initial declaration used outside C99 mode (0) | 2017.07.19 |
'/ZI' and '/Gy-' command-line options are incompatible (0) | 2017.05.17 |
test dword ptr [eax],eax ; probe page. (0) | 2017.04.28 |