gpt4 book ai didi

python - 使用 DictWriter 编写字典键的子集

转载 作者:太空狗 更新时间:2023-10-29 17:36:32 25 4
gpt4 key购买 nike

我使用 csv 模块编写了一个将字典列表序列化为 CSV 文件的函数,代码如下:

data = csv.DictWriter(out_f, fieldnames)
data.writerows(dictrows)

但是,有时我只想将每个字典键的一个子集写到一个文件中。如果我将每个字典所具有的键的子集作为 fieldnames 传递,则会出现错误:

"dict contains fields not in fieldnames"

我怎样才能让 DictRows 只将我指定的字段的子集写入 CSV,而忽略那些在字典中但不在字段名中的字段?

最佳答案

最简单和最直接的方法是在初始化 DictWriter 实例时传递 extrasaction='ignore',如记录 here :

If the dictionary passed to the writerow() method contains a key not found in fieldnames, the optional extrasaction parameter indicates what action to take. If it is set to 'raise' a ValueError is raised. If it is set to 'ignore', extra values in the dictionary are ignored.

它也适用于 writerows,它在内部只是重复调用 writerow

关于python - 使用 DictWriter 编写字典键的子集,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3208874/

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