标签: python csv
我的格式错误的csv文件看起来像
"header_1"; "header_2" "abc"; "def" "ghi"; ""jkl""
当我像这样使用我的读者时:
reader = csv.reader(csv_file, delimiter=";", quotechar='\"', doublequote=True)
代码显然会导致问题。我如何忽略 doubled doublequotes 而没有用删除的 doubled doublequotes 重写csv文件?