Coding/Python 삽질기2019. 6. 20. 23:50

Python으로 대용량 파일을 읽는 중, 파일의 일부 글자의 오류로, 전체 파일을 읽을 수 없는 경우가 있다.

이 때 아래와 같이 파일을 읽으면 된다.

with open(filename, "rt", encoding="UTF-8",  errors="surrogatepass") as targetFile:
    for line in targetFile:
        print(line)

 

'Coding > Python 삽질기' 카테고리의 다른 글

Pycon 2019 Korea youtube 링크 모음  (0) 2019.09.25
email parser  (0) 2018.09.12
ChoboMemo (16분할 메모)  (0) 2018.06.12
Posted by chobocho