在Python中从同一文件加载多个JSON对象

时间:2014-11-19 21:31:42

标签: python json

我正在尝试从同一个JSON文件中提取多个对象。我的JSON文件内容如下所示:

{"business_id": "1",
 "Accepts Credit Cards": true,
 "Price Range": 1,
 "type": "food"}
{"business_id": "2",
 "Accepts Credit Cards": true,
 "Price Range": 2,
 "type": "cloth"}
{"business_id": "3",
 "Accepts Credit Cards": false,
 "Price Range": 3,
 "type": "sports"}

我正在尝试以下代码,该代码适用于仅包含一个JSON对象的文件。

import json

with open("business.json") as json_file:
    json_data = json.load(json_file)
    print(json_data)

我该如何解决这个问题?我没有找到任何解析来自同一文件的JSON数据的解决方案。

0 个答案:

没有答案