gpt4 book ai didi

python - 从 JSON 文件获取值

转载 作者:行者123 更新时间:2023-11-28 20:18:10 25 4
gpt4 key购买 nike

我正在尝试从计数中获取值并将它们相加以求总和。我写的代码是:

import json
data= '''
{
"note":" sample data ",
"comments":
[
{
"School":"UCLA",
"count":97
},
{
"School":"MIT",
"count":97
},
{
"School":"Rutgers",
"count":90
}
]
}'''

number=list()
a=0
b=0
info = json.loads (data)
print json.dumps(info, indent=4)
for i in info:
number= i["comments"][0]["count"]
for n in number:
a=float(n)
b+=a
print b

当我执行这个时,我得到的输出是:

Traceback (most recent call last):
File "testty.py", line 28, in <module>
number= i["comments"][0]["count"]
TypeError: string indices must be integers

谁能告诉我我做错了什么以及如何解决它。

谢谢

最佳答案

您应该遍历 info["comments"],这是一个列表。您还可以使用 sum 函数对值求和

b = sum(float(i["count"]) for i in info["comments"])

关于python - 从 JSON 文件获取值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37473093/

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