본문 바로가기

Troubleshooting

CSV 파일 생성 시 인코딩.

cp932' codec can't encode character '\uc18c' in position 0: illegal multibyte sequence

메시지 나올 csv 파일 만들 옵션에 encoding 형식에 utf-8 정해 주니 해결.

 

with open(current_location+'\\visitor_Info.csv', mode='w', newline='', encoding="utf-8") as file:

반응형