본문 바로가기

main/Python

파일 쓰기시 UnicodeEncodeError: 'cp949' codec can't encode character 오류 해결

txt 파일을 생성하여 쓰려고 할 때

UnicodeEncodeError: 'cp949' codec can't encode character

오류가 발생했다.

 

f = open(filename, 'w', encoding='utf-8')

파일 열기 옵션에 encoding을 utf-8로 주었더니 해결되었다.