解决!OverflowError: Python int too large to convert to C long

类似的出错问题:

OverflowError: Python int too large to convert to C long

_csv.Error: field larger than field limit (131072)
 

原因:文件太大了

一招解决:

将csv.field_size_limit()代码改为:

csv.field_size_limit(sys.maxsize)

或者

csv.field_size_limit(10000000)

 
 

你可能感兴趣的:(python,开发语言)