gpt4 book ai didi

python - 从字典中写一个 CSV,其中键是一行,值是另一行

转载 作者:太空宇宙 更新时间:2023-11-04 09:46:34 24 4
gpt4 key购买 nike

我有这本字典:

mergedDict = {'a': '1', 'b': '2', 'c': '3', 'd': '4', 'e': '5', 'f': '6', 'g': '7', 'h': '8', 'i': '9', 'j': '10'}

我想创建具有以下输出的 CSV:

a, b, c, d, e, f, g, h, i, j
1, 2, 3, 4, 5, 6, 7, 8, 9, 10

我尝试执行“writerow”来打印出每一行,但我无法获得所需的正确输出。有时,它只打印出一个键和一个值,而不打印其余部分。有没有人知道如何做到这一点?

最佳答案

使用csv模块。

with open('FileName.csv', 'w', newline='') as csvfile:
writer_ = csv.writer(csvfile, delimiter=',', quoting=csv.QUOTE_MINIMAL)
writer_.writerow(mergedDict.keys())
writer_.writerow(mergedDict.values())

关于python - 从字典中写一个 CSV,其中键是一行,值是另一行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49566533/

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