Error 로그 예시
SyntaxError: Non-ASCII character '\xec' in file test_python_file.py on line 52, but no encoding declared; see http://www.python.org/peps/pep-0263.html for details
문제 원인
인코딩이 utf-8로 되어있지 않아 한글을 읽어내던 중 SyntaxError 발생
해결방법
# -*- coding: utf-8 -*-
#-*- coding: utf-8 -*-
위 문구를 해당 python 파일 최상단에 입력 후 저장하면 정상적으로 파이썬 파일이 실행된다.
( 최상단에 작성해야 정상적으로 적용됩니다. )
'Development > Python' 카테고리의 다른 글
Python 3 버전에 맞는 pip 설치하기 (0) | 2019.05.30 |
---|---|
How to install Python-3.5.1 without yum error (0) | 2019.05.30 |
[Python] How to get result of system commands (0) | 2019.05.29 |
Python button, mouse mecro sample with pynput (0) | 2019.05.14 |
자주 쓰는 Python module (파이썬 모듈 import ) (0) | 2019.05.10 |