假设字典可以有不同的键,如何在 Python 中将字典列表转换为 CSV 格式?

发布于 2024-12-03 13:46:01 字数 330 浏览 0 评论 0原文

我有一个这样的字典列表:

[
{'item1':'bla', 'item2':'bli', 'item3':'blu'},
{'item1':'love', 'item3':'python'}
]

请注意,dict 2 没有键“item2”。 我想生成一个 csv 输出,这样我就可以将所有内容插入到 SQL 表中:

item1,item2,item3
bla,bli,blu
love,,python

如果所有字典共享相同的键,我找到了一种简单的方法来做到这一点,但我不知道如何优雅地做到这一点事实并非如此。

I have a list of dictionaries like that :

[
{'item1':'bla', 'item2':'bli', 'item3':'blu'},
{'item1':'love', 'item3':'python'}
]

Notice that dict 2 doesn't have key 'item2'.
I want to produce a csv output as such, so I can insert everything into a SQL table:

item1,item2,item3
bla,bli,blu
love,,python

I found an easy way to do that if all dictionaries share the same keys, but I don't see how to do that elegantly if that is not the case.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

仙女山的月亮 2024-12-10 13:46:01

csv.DictWriterfieldnamesrestval 参数。

Use csv.DictWriter with the fieldnames and restval arguments.

靑春怀旧 2024-12-10 13:46:01

像这样的东西

#Create a master list of keys
allKeys = ()
for row in YourListHere:
    allKeys.union(row.keys())

#Sort the keys
allKeys = list(allKeys).sorted()

#Go through printing the rows
for row in YourListHere:
    values = []
    for key in allKeys:
        #Add the values if it exists, if no key in this row add a blank
        if key in row:
            values.append(row[key])
        else:
            values.append('')
    print ','.join(values)

Something like

#Create a master list of keys
allKeys = ()
for row in YourListHere:
    allKeys.union(row.keys())

#Sort the keys
allKeys = list(allKeys).sorted()

#Go through printing the rows
for row in YourListHere:
    values = []
    for key in allKeys:
        #Add the values if it exists, if no key in this row add a blank
        if key in row:
            values.append(row[key])
        else:
            values.append('')
    print ','.join(values)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文