我应该如何使用密钥从 python 中的 .json 文件中提取密钥的值 id

how I should proceed to extract the value id for keys from the .json file in python using the keys

我是 python 的初学者。您能告诉我应该如何继续从 python 中的 .json 文件中提取密钥的值 ID。我目前正在使用 'if' 条件比较密钥,然后我不知道应该如何继续获取相关的 value.I 已经将 json 内容写入文件我的代码是:(这是 YOUTUBE API)

f = open('python_JSON_YOUTUBE.json', 'w+')
        s=str(data)
        f.write(s)
        c = f.read()
        if c == "\"items\"":
            if c == "\"kind\"":
                cursor1.execute ("""INSERT INTO youtube_channel (kind) VALUES(%s)""", ( , ))

导入JSON模块:

>>> import json

现在,有一个 JSON 格式的字符串:

>>> s = '{"firstname": "John","lastname": "Smith"}'

加载字符串(变量dictionary变成字典):

>>> dictionary = json.loads(s)

只需像使用任何 Python 字典一样使用 dictionary 进行操作,即:

>>> dictionary['firstname']
John