gpt4 book ai didi

python - 在 Python 中解析 Json(字典中的列表)

转载 作者:太空宇宙 更新时间:2023-11-04 07:36:26 25 4
gpt4 key购买 nike

我想得到计数的总和下面是我的 json:

json_data={
"note":abbcccc,
"comments":
[{"count":100,"name"=leven},{"count":120,"name"=sam}]
}

如何得到所有计数的总和 (100+120)

我可以这样得到个人:

data=json.loads(json_data)
count=data["comments"][0]["count"]

但坚持“如何循环”

最佳答案

使用sum :

count = sum(c["count"] for c in data["comments"])

关于python - 在 Python 中解析 Json(字典中的列表),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34193089/

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