[Python] 한글 입력 오류
아래와 같은 에러가 날 경우 해결하자
Error case
SyntaxError: Non-ASCII character '\xea' in file gps_test.py on line 18, but no encoding declared; see http://python.org/dev/peps/pep-0263/ for details
Solution
끝!
# -*- coding: utf-8 -*-
아래와 같은 에러가 날 경우 해결하자
SyntaxError: Non-ASCII character '\xea' in file gps_test.py on line 18, but no encoding declared; see http://python.org/dev/peps/pep-0263/ for details
끝!
# -*- coding: utf-8 -*-
Leave a comment