Python 한글 주석 사용하기
파이썬에서 한글 주석 사용시 다음 에러가 발생한다. SyntaxError: Non-ASCII character '\xec' in file ./{file_name}.py on line 1, but no encoding declared; see http://python.org/dev/peps/pep-0263/ for detail 파이썬 파일 최상단에 encoding을 utf-8로 설정해주는 다음과 같은 문구를 작성하면 한글 주석을 사용할 수 있다. # -*- coding: utf-8 -*-
dev/python
2020. 6. 1. 19:42