AI·빅데이터 융합 경영학 Study Note
'utf-8' codec can't decode byte 0xc1 in position 0: invalid start byte 본문
기타/오류 해결
'utf-8' codec can't decode byte 0xc1 in position 0: invalid start byte
SubjectOwner 2023. 11. 16. 23:53문제 코드
apart_df = pd.read_csv('주택도시보증공사_전국 신규 민간아파트 분양가격 동향_20230630.csv').copy()
오류코드
'utf-8' codec can't decode byte 0xc1 in position 0: invalid start byte
이럴 땐 파일 옆에 "encoding='cp949' " 을 붙이면 됨.
해결
apart_df = pd.read_csv('주택도시보증공사_전국 신규 민간아파트 분양가격 동향_20230630.csv', encoding='cp949').copy()
'기타 > 오류 해결' 카테고리의 다른 글
unindent does not match any outer indentation level (1) | 2023.11.22 |
---|---|
'utf-8' codec can't decode byte 0xe0 in position 39: invalid continuation byte (0) | 2023.11.21 |
No module named 'kerastuner' (0) | 2023.11.21 |
name 'CatBoostClassifier' is not defined (1) | 2023.11.19 |
NoneType' object has no attribute 'split' (0) | 2023.11.09 |