[Python] Error : non-utf-8 code starting with ' xc6'

제이브로·2024년 1월 30일
0

Python

목록 보기
4/17
post-thumbnail

Python 실행시, SyntaxError가 발생하면서, non-utf-8 code starting with ' xc6'가 나타났다. 찾아보니, 한글 인코딩 문제였다.

1. 에러 발생

SyntaxError: Non-UTF-8 code starting with '\xed'
in file <FilePath> but no encoding declared;
see http://python.org/dev/peps/pep-0263/ for details

2. 에러 해결

  • 코드 맨 윗줄에 # -_- coding: utf-8 -_- 삽입
# -*- coding: utf-8 -*-
# 라이브러리 import
import pymysql
import os, json
import glob
import shutil as sh

...

3. Reference

  1. Python pep-0263

이상입니다.
궁금하신 점은 댓글 남겨주세요!
소통도 환영합니다~~ 감사합니다 :D

profile
기록하지 않으면 기록되지 않는다.

0개의 댓글