gpt4 book ai didi

python - 访问特定节点 JSON

转载 作者:行者123 更新时间:2023-11-30 23:33:14 27 4
gpt4 key购买 nike

这是我的 JSON

{"sites":[{"site_id":1234,..,..}, {"site_id":5678,..,..}]}

我正在尝试使用以下方法循环它:

for site_id in account['sites']['site_id']:
print(site_id)

其产量:

list indices must be integers, not str

最佳答案

account['sites'] 是一个字典列表,迭代它并通过 site_id 键获取值:

for site in account['sites']:
print site['site_id']

关于python - 访问特定节点 JSON,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19007934/

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