파일 오픈시 'utf-8' codec can't decode byte 0xc4 in position 7239: invalid continuation byte에러
에러 메시지: 'utf-8' codec can't decode byte 0xc4 in position 7239: invalid continuation byte
try:
line_dic = {}
vpn_f = open(vpn_filename, 'r', encoding='UTF8')
...
except Exception as e:
print(e)
를 했더니 에러 메시지가 나왔다.
해결: vpn_f = open(vpn_filename, 'r', encoding='ISO-8859-1')
성공~!
Author And Source
이 문제에 관하여(파일 오픈시 'utf-8' codec can't decode byte 0xc4 in position 7239: invalid continuation byte에러), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@paori/파일-오픈시-utf-8-codec-cant-decode-byte-0xc4-in-position-7239-invalid-continuation-byte에러저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)