嵌套 JSON 字典

发布于 2025-01-11 22:36:46 字数 147 浏览 0 评论 0原文

在此处输入图像描述

有人能解释一下为什么会返回类型错误吗?尝试打印“bodyhtml”。

enter image description here

Would someone explain why this returns a typeerror? the attempt is to print the 'bodyhtml'.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

如何视而不见 2025-01-18 22:36:46

当前您正在尝试访问 ret["response"]["results"] 的字符串索引,它是一个列表。如果你想访问第一个结果,你可以将代码更改为:

ret["response"]["results"][0]["blocks"] # ... 

Currently you are trying to access a string index of ret["response"]["results"], which is a list. if you wanted to access the first result, you could change the code to this:

ret["response"]["results"][0]["blocks"] # ... 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文