我正在尝试覆盖CSV中的某个列,但却无法做到这一点。
import os
import csv
r=len(list(csv.reader(open('C:/Users/KaanPISI/Desktop/seyiresas.csv'))))
open('C:/Users/KaanPISI/Desktop/seyiresas.csv','w')
for i in range(0,r):
row[i] = row[i].write('/home/nvidia/racecar-ws/src/racecar-
controllers/deep_learning/data/057/',"%05d"%i,'.jpg')
i=i+1
最终以CSV格式删除所有内容。
答案 0 :(得分:0)
您对打开的文件使用了错误的模式。正如您可以阅读here
(...)' W'仅用于写入(将擦除具有相同名称的现有文件),并且' a'打开文件以追加(...)
因此,当您设置w
标记时,您将覆盖您的文件。您需要做的就是在此行中将w
更改为a
open('C:/Users/KaanPISI/Desktop/seyiresas.csv','w')
答案 1 :(得分:0)
很遗憾,我还没有找到使用csv
模块覆盖CSV中特定行的方法;您必须使用新数据编写新文件(或覆盖现有文件,如下所示)。
在下面的代码中,我将CSV读入行列表(lines
),然后您可以根据需要修改每个元素,然后删除CSV并编写一个具有相同名称的新元素并在lines
中修改了数据。我使用with()
运算符,因为close()
是自动完成的。
import os
import csv
filepathIn = 'PATH TO YOUR CSV'
# First read the contents of your current file
with open(filepathIn,'r') as f:
lines = f.readlines()
## lines is now a list of each row in the CSV. Modify as needed
# Remove the file and write a new one of the same name
os.remove(filepathIn)
with open(filepathIn,'w',newline='') as output:
write = csv.writer(output)
write.writerows(lines)