gpt4 book ai didi

python - _csv.错误: field larger than field limit (131072)

转载 作者:太空宇宙 更新时间:2023-11-03 21:47:16 24 4
gpt4 key购买 nike

我有一个读取 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 文件?跳过具有巨大字段的行不是一种选择,因为需要在后续步骤中分析数据。

最佳答案

csv 文件可能包含非常大的字段,因此增加 field_size_limit:

import sys
import csv

csv.field_size_limit(sys.maxsize)

sys.maxsize 适用于 Python 2.x 和 3.x。 sys.maxint 仅适用于 Python 2.x ( SO: what-is-sys-maxint-in-python-3 )

更新

正如 Geoff 指出的,上面的代码可能会导致以下错误:OverflowError:Python int 太大,无法转换为 C long。为了避免这种情况,您可以使用以下快速但肮脏代码(它应该适用于使用 Python 2 和 Python 3 的每个系统):

import sys
import csv
maxInt = sys.maxsize

while True:
# decrease the maxInt value by factor 10
# as long as the OverflowError occurs.

try:
csv.field_size_limit(maxInt)
break
except OverflowError:
maxInt = int(maxInt/10)

关于python - _csv.错误: field larger than field limit (131072),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52404416/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com