如何从json数据读取特定字段?

时间:2019-10-03 16:49:28

标签: python json

我想从JSON数据中检索"text:"字段。我该如何在python中做到这一点?

{ 
   "contributors":null,
   "truncated":false,
   "text":"A perfect gift to yourself this new year! #celiac #glutenfree ",
   "in_reply_to_status_id":null,
   "id":418468308673773568,
   "favorite_count":0,
}

1 个答案:

答案 0 :(得分:2)

Python包含json模块,该模块可让您将JSON字符串直接解析为Python字典。

import json
dic = json.loads(json_str)

您现在可以使用dic['key']访问该值。就您而言,dic['text']

请记住,必须使用有效的JSON格式。
您必须在','的末尾删除"favorite_count":0,