欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

python中处理json中遇到的错误

程序员文章站 2024-01-15 21:18:28
...

python中处理json中遇到的错误(2020年2月25日17:44:42)更新中…

一、AttributeError: ‘list’ object has no attribute ‘get’

python中处理json中遇到的错误
这里的主要问题在这里,就是“hotComments”下级是列表,列表无法直接get,应该替换为

content1 = text_json.get("hotComments").get('content')

替换为:

content1 = text_json.get("hotComments")[0].get('content')  #获取列表中第一个字典里边的的'content'
或者:
for i in content1:
    i.get('content')
相关标签: python学习