UnicodeDecodeError: 'utf-8' codec can't decode byte 0xe2 in position 14: invalid continuation byte 해결 방법
2021. 5. 14. 18:54ㆍPython
encoding 부분을 'ISO-8859-1'로 변경해주면 파일을 읽을 수 있다.
encoding='utf-8' => encoding='ISO-8859-1'
728x90
반응형
'Python' 카테고리의 다른 글
Python @classmethod, @staticmethod 차이점 (0) | 2021.07.10 |
---|---|
python 해당 값 찾기 in 연산자 (0) | 2021.07.09 |
string 자료형 문장부호 없애는 방법 string.puctuation (0) | 2021.07.09 |
cp949' codec can't decode byte 0xec in position 84: illegal multibyte sequence 오류 해결 json파일 가져올때 (0) | 2021.06.30 |
SyntaxError: Non-ASCII character 에러 해결 (0) | 2021.05.14 |