gpt4 book ai didi

python - 在python中从文件加载json后检查 key 是否丢失

转载 作者:太空狗 更新时间:2023-10-30 00:53:45 25 4
gpt4 key购买 nike

我通过以下方式获取 JSON:

with open("config.json") as data_file:
global data
data = json.load(data_file)

我想检查 data["example"] 是否为空。

最佳答案

data.keys() 中的“example” 将返回 True 或 False,因此这是一种检查方法。

所以,给定这样的 JSON...

  { "example": { "title": "example title"}}

并给定代码来像这样加载文件......

import json

with open('example.json') as f:

data = json.load(f)

以下代码将返回 True 或 False:

x = "example" in data   # x set to True
y = "cheese" in data # y set to False

关于python - 在python中从文件加载json后检查 key 是否丢失,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44145784/

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