嵌套 JSON 字典
有人能解释一下为什么会返回类型错误吗?尝试打印“bodyhtml”。
Would someone explain why this returns a typeerror? the attempt is to print the 'bodyhtml'.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当前您正在尝试访问 ret["response"]["results"] 的字符串索引,它是一个列表。如果你想访问第一个结果,你可以将代码更改为:
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: