使用 csv 模块将列表元素写入 python 中的 csv 文件中的字段
Write list elements to fields in a csv-file in python using the csv modul
我得到了一个文本文件 BM.txt 内容如下:
*A0 0194 7F9E 00 0001 B7AB A0 0194 7F9E 00 0001 B7BE A0 0194 7F9E 00 0001 B7CD A0 0194 7F9E 00 0001 B7D4*
在我的代码中:
我想用 26 个字符分隔元素。 26个字符的每个元素是列表中的一个元素:
import csv #import csv modul using writerows function
#csv docs https://docs.python.org/3/library/csv.html
#open the file with the string element to seperate bm elements.
file = open("BM.txt", "r")
c = file.read()
#list comp that seperates the elements by 26 charackters each
neue_liste = [c[i:i+26] for i in range(0, len(c), 26)]
#creating a new file with the bm elements as comma seperated values
with open('briefmarken.csv', 'w', newline='') as f:
writer = csv.writer(f)
writer.writerows(neue_liste)
file.close()
列表理解的结果看起来很有希望:
['A0 0194 7F9E 00 0001 B7AB ', 'A0 0194 7F9E 00 0001 B7BE ', 'A0 0194 7F9E 00 0001 B7CD ',.....]
但是当我最终使用 writerow() 函数编写列表时。
csv 中的内容如下所示:
A,0, ,0,1,9,4, ,7,F,9,E, ,0,0, ,0,0,0,1, ,B,7,A,B,
A,0, ,0,1,9,4, ,7,F,9,E, ,0,0, ,0,0,0,1, ,B,7,B,E,
A,0, ,0,1,9,4, ,7,F,9,E, ,0,0, ,0,0,0,1, ,B,7,C,D,
....
真的,这对我的工作来说已经足够好了,但我想知道为什么现在每个字符都用逗号分隔?我正在查看帖子和 csv 文档,但我不明白。
也许有人可以回答这个问题。
提前致谢
本
您正在使用 csv.writerows
编写字符串列表,其中写入 几 行。
此函数接受可迭代对象的可迭代对象。因此,当传递字符串列表时,您满足了输入,但这不是您所期望的:字符串被视为可迭代对象,并且逐字符拆分。
要写入所有数据,每行 1 个字符串,请使用:
writer.writerows([x] for x in neue_liste)
(好吧,csv
模块在那种情况下几乎没用,最好在文件句柄上使用 writelines
)
要将所有数据写入 1 行,请使用 writerow
(注意最后缺少 s
):
writer.writerow(neue_liste)
虽然评论明智地建议你想根据空格再次拆分你的字符串,然后使用:
writer.writerows(x.split() for x in neue_liste)
或
writer.writerows(map(str.split,neue_liste))
我得到了一个文本文件 BM.txt 内容如下:
*A0 0194 7F9E 00 0001 B7AB A0 0194 7F9E 00 0001 B7BE A0 0194 7F9E 00 0001 B7CD A0 0194 7F9E 00 0001 B7D4*
在我的代码中: 我想用 26 个字符分隔元素。 26个字符的每个元素是列表中的一个元素:
import csv #import csv modul using writerows function
#csv docs https://docs.python.org/3/library/csv.html
#open the file with the string element to seperate bm elements.
file = open("BM.txt", "r")
c = file.read()
#list comp that seperates the elements by 26 charackters each
neue_liste = [c[i:i+26] for i in range(0, len(c), 26)]
#creating a new file with the bm elements as comma seperated values
with open('briefmarken.csv', 'w', newline='') as f:
writer = csv.writer(f)
writer.writerows(neue_liste)
file.close()
列表理解的结果看起来很有希望:
['A0 0194 7F9E 00 0001 B7AB ', 'A0 0194 7F9E 00 0001 B7BE ', 'A0 0194 7F9E 00 0001 B7CD ',.....]
但是当我最终使用 writerow() 函数编写列表时。 csv 中的内容如下所示:
A,0, ,0,1,9,4, ,7,F,9,E, ,0,0, ,0,0,0,1, ,B,7,A,B,
A,0, ,0,1,9,4, ,7,F,9,E, ,0,0, ,0,0,0,1, ,B,7,B,E,
A,0, ,0,1,9,4, ,7,F,9,E, ,0,0, ,0,0,0,1, ,B,7,C,D,
....
真的,这对我的工作来说已经足够好了,但我想知道为什么现在每个字符都用逗号分隔?我正在查看帖子和 csv 文档,但我不明白。
也许有人可以回答这个问题。
提前致谢
本
您正在使用 csv.writerows
编写字符串列表,其中写入 几 行。
此函数接受可迭代对象的可迭代对象。因此,当传递字符串列表时,您满足了输入,但这不是您所期望的:字符串被视为可迭代对象,并且逐字符拆分。
要写入所有数据,每行 1 个字符串,请使用:
writer.writerows([x] for x in neue_liste)
(好吧,csv
模块在那种情况下几乎没用,最好在文件句柄上使用 writelines
)
要将所有数据写入 1 行,请使用 writerow
(注意最后缺少 s
):
writer.writerow(neue_liste)
虽然评论明智地建议你想根据空格再次拆分你的字符串,然后使用:
writer.writerows(x.split() for x in neue_liste)
或
writer.writerows(map(str.split,neue_liste))