python 에서 csv 를 열 때 encoding 에서 생기는 오류로 utf-8 을 사용해준다.
'cp949' codec can't decode byte 0xbf in position 2: illegal multibyte sequence
'euc_kr' codec can't decode byte 0xbf in position 2: illegal multibyte sequence
df.to_csv("/home/test.csv", encoding='utf-8')
반응형
'프로그래밍 언어 > Python' 카테고리의 다른 글
[python] 파이썬에서 날짜 포맷 변경하기 (0) | 2022.03.16 |
---|---|
[python] 배열 뒤에서부터 출력 [::] (0) | 2022.02.02 |
[python] dataframe 숫자만 추출, 숫자+문자 추출 (데이터 전처리) (0) | 2022.01.26 |
[python] 'in <string>' requires string as left operand, not float (0) | 2022.01.26 |
[python] dataframe 컬럼명 변경하기 (0) | 2022.01.26 |