gpt4 book ai didi

python - 按行和列写入 csv

转载 作者:太空宇宙 更新时间:2023-11-03 18:55:49 27 4
gpt4 key购买 nike

我已经快要完成了,但无法解决这个问题。我正在写入 csv,我的代码不断给我这个输出。

 dict,a,b,c,d
,,,,
list,1,2,3,4

我希望它如下:

 dict, list
a,1
b,2
c,3
d,4

代码是:

    ##Opening my dictionary .cvs file
with open('some_file.csv', mode='r') as infile:
reader = csv.reader(infile,)
DICT = {rows[0]:rows[1] for rows in reader if len(rows) == 2}

##Opening my enquiry list .cvs file
datafile = open(self.filename, 'r')
datareader = csv.reader(datafile)
n1 = []
for row in datareader:
n1.append(row)

n = list(itertools.chain(*n1))

headings = ['dict', 'list']

##Writing to .cvs file
with open(asksaveasfilename(), 'w') as fp:
a = csv.writer(fp)
# write row of header names
a.writerow(n)

# build up a list of the values in DICT corresponding to the keys in n
values = []
for name in n:
if name in DICT:
values.append(DICT[name])
else:
values.append("Not Available")

# now write them out
a.writerow(values)

我尝试使用writerows,但这打印的数据也错误

d,i,c,t
a
b
c
d
l,i,s,t
1
2
3
4
<小时/>

解决方案:

    for nameValueTuple in zip(n,values):
a.writerow(nameValueTuple)

成功了

最佳答案

直接写入数据

import csv

DICT = {a:a*a for a in [1,2,3,4,5]}
n = [2, 5, 99, 3]

headings = ['dict', 'list']

##Writing to .cvs file
with open("try.csv", 'w') as fp:
a = csv.writer(fp)
a.writerow(headings)
for name in n:
if name in DICT:
a.writerow([name, DICT[name]])
else:
a.writerow([name, "Not Available"])

这将导致 try.csv 包含:

dict,list
2,4
5,25
99,Not Available
3,9

先进行处理,然后写入处理后的行:

您还可以一次进行处理并编写所有内容:

import csv

DICT = {a:a*a for a in [1,2,3,4,5,6]}
ns = [2,3,99,5]

headings = ['dict', 'list']

ns_squared = [DICT[name] if name in DICT else "NOT_FOUND" for name in names]

print(ns_squared) #=> [4, 9, 'NOT_FOUND', 25]

rows = zip(ns,ns_squared)

with open("try.csv", 'w') as fp:
a = csv.writer(fp)
a.writerow(headings)
a.writerows(rows)

这将导致:

dict,list
2,4
3,9
99,NOT_FOUND
5,25

使用 zip 将列转换为行

如果您将列作为列表,则可以使用 zip() 内置函数将它们转换为行。例如:

>>> column1 = ["value", 1, 2, 3, 4]
>>> column2 = ["square", 2, 4, 9, 16]
>>> zip(column1,column2)
[('value', 'square'), (1, 2), (2, 4), (3, 9), (4, 16)]

关于python - 按行和列写入 csv,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17293455/

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