[정보] Eclipse에서 Python사용시 한글 에러 문제
페이지 정보
작성자 최고관리자 댓글 0건 조회 1,241회 작성일 20-02-06 13:52본문
Python을 Eclipse에서 플러그인으로 편하게 사용할 수 있습니다.
그런데 다음과 같이 간단한 코드를 실행시키면
================================================================
print "한글"
================================================================
다음과 같은 인코딩 관련 에러가 발생합니다.
================================================================
File "D:\Eclipses\Java_workspace\Python1\src\Test.py", line 2
SyntaxError: Non-ASCII character '\xc7' in file D:\Eclipses\Java_workspace\Python1\src\Test.py on line 2, but no encoding declared; see http://www.python.org/peps/pep-0263.html for details
================================================================
해결하기 위해서는
================================================================
# -*-coding: euc-kr -*-
================================================================
위와 같은 주석을 소스의 맨 위에 적어주면 해결됩니다.
그런데 다음과 같이 간단한 코드를 실행시키면
================================================================
print "한글"
================================================================
다음과 같은 인코딩 관련 에러가 발생합니다.
================================================================
File "D:\Eclipses\Java_workspace\Python1\src\Test.py", line 2
SyntaxError: Non-ASCII character '\xc7' in file D:\Eclipses\Java_workspace\Python1\src\Test.py on line 2, but no encoding declared; see http://www.python.org/peps/pep-0263.html for details
================================================================
해결하기 위해서는
================================================================
# -*-coding: euc-kr -*-
================================================================
위와 같은 주석을 소스의 맨 위에 적어주면 해결됩니다.
- 이전글[정보] 간단한 사전 프로그램 20.02.06
- 다음글[정보] ACL(Association for Computational Linguistics) 논문 다운 20.02.06
댓글목록
등록된 댓글이 없습니다.