gpt4 book ai didi

python - 从 CSV 文件读取/写入嵌套字典列表 (Python)

转载 作者:行者123 更新时间:2023-11-28 19:59:46 25 4
gpt4 key购买 nike

我有一个如下所示的数据结构:

data  =[
{'key_1': { 'calc1': 42, 'calc2': 3.142 } },
{'key_2': { 'calc1': 123.4, 'calc2': 1.414 } },
{'key_3': { 'calc1': 2.718, 'calc2': 0.577 } }
]

我希望能够将数据保存/加载到具有以下格式的 CSV 文件中

key,    calc1,   calc2   <- header
key_1, 42, 3.142 <- data rows
key_2, 123.4, 1.414
key_3, 2.718, 0.577

将此数据结构读取/保存到 CSV 文件(如上述文件)的“Pythonic”方法是什么?

最佳答案

只是为了展示一个确实使用 csv 模块的版本:

from csv import DictWriter

data =[
{'key_1': { 'calc1': 42, 'calc2': 3.142 } },
{'key_2': { 'calc1': 123.4, 'calc2': 1.414 } },
{'key_3': { 'calc1': 2.718, 'calc2': 0.577 } }
]

with open('test.csv', 'wb') as f:
writer = DictWriter(f, ['key', 'calc1', 'calc2'])
writer.writerow(dict(zip(writer.fieldnames, writer.fieldnames))) # no automatic header :-(
for i in data:
key, values = i.items()[0] # each dict in data contains only one entry
writer.writerow(dict(key=key, **values)) # first make a new dict merging the key and the values

关于python - 从 CSV 文件读取/写入嵌套字典列表 (Python),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3195982/

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