gpt4 book ai didi

python - CSV 阅读器 (Python) 中的 "Line contains NULL byte"

转载 作者:IT老高 更新时间:2023-10-28 21:33:29 25 4
gpt4 key购买 nike

我正在尝试编写一个查看 .CSV 文件 (input.csv) 并仅重写以某个元素 (corrected.csv) 开头的行的程序,如文本文件 (output.txt) 中所列)。

这是我的程序现在的样子:

import csv

lines = []
with open('output.txt','r') as f:
for line in f.readlines():
lines.append(line[:-1])

with open('corrected.csv','w') as correct:
writer = csv.writer(correct, dialect = 'excel')
with open('input.csv', 'r') as mycsv:
reader = csv.reader(mycsv)
for row in reader:
if row[0] not in lines:
writer.writerow(row)

不幸的是,我不断收到此错误,我不知道它是关于什么的。

Traceback (most recent call last):
File "C:\Python32\Sample Program\csvParser.py", line 12, in <module>
for row in reader:
_csv.Error: line contains NULL byte

感谢所有人here甚至让我走到这一步。

最佳答案

我猜你在 input.csv 中有一个 NUL 字节。您可以使用

进行测试
if '\0' in open('input.csv').read():
print "you have null bytes in your input file"
else:
print "you don't"

如果你这样做,

reader = csv.reader(x.replace('\0', '') for x in mycsv)

可能会帮助您解决这个问题。或者它可能表明您在 .csv 文件中有 utf16 或“有趣”的内容。

关于python - CSV 阅读器 (Python) 中的 "Line contains NULL byte",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7894856/

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