8
_csv. 오류 : 필드 제한보다 큰 필드 (131072)
매우 큰 필드가있는 CSV 파일로 읽은 스크립트가 있습니다. # example from http://docs.python.org/3.3/library/csv.html?highlight=csv%20dictreader#examples import csv with open('some.csv', newline='') as f: reader = csv.reader(f) for row in reader: print(row) 그러나 일부 CSV 파일에서 다음 오류가 발생합니다. _csv.Error: field larger than field limit (131072) 거대한 필드를 가진 CSV 파일을 어떻게 분석 할 수 …