打印JSON元素

问题描述 投票:-1回答:3

关于如何打印JSON元素,我有些不明白的地方。有了Yelp,感谢这个查询“https://api.yelp.com/v3/businesses/search?cc=FR&location=Toulouse&categories=movietheaters&limit=1”我可以检索这个JSON:

{
  "businesses": [
    {
      "id": "gaumont-wilson-toulouse-2",
      "name": "Gaumont Wilson",
      "image_url": "https://s3-media1.fl.yelpcdn.com/bphoto/dYJc874NnEJ9-jX2amrLvw/o.jpg",
      "is_closed": false,
      "url": "https://www.yelp.com/biz/gaumont-wilson-toulouse-2?adjust_creative=Xi9rQmCT871UpMvNRzAfuw&utm_campaign=yelp_api_v3&utm_medium=api_v3_business_search&utm_source=Xi9rQmCT871UpMvNRzAfuw",
      "review_count": 165,
      "categories": [
        {
          "alias": "movietheaters",
          "title": "Cinema"
        }
      ],
      "rating": 4,
      "coordinates": {
        "latitude": 43.6044154,
        "longitude": 1.4475916
      },
      "transactions": [],
      "location": {
        "address1": "3 place du Président Thomas Wilson",
        "address2": null,
        "address3": null,
        "city": "Toulouse",
        "zip_code": "31000",
        "country": "FR",
        "state": "31",
        "display_address": [
          "3 place du Président Thomas Wilson",
          "31000 Toulouse",
          "France"
        ]
      },
      "phone": "+33534445050",
      "display_phone": "+33 5 34 44 50 50",
      "distance": 451.43923036020004
    }
  ],
  "total": 11,
  "region": {
    "center": {
      "latitude": 43.602510035320684,
      "longitude": 1.4426422119140625
    }
  }
}

然后我这样看待JSON:

response_data = response.json()
for i in response_data['businesses']:
    print i['name']

'name'是我唯一可以打印的东西!

我无法打印'address1''city''zip_code'

为什么?

python json yelp yelp-fusion-api
3个回答
0
投票

因为JSON中的那个层次结构中不存在这些键。它们存在于"location"键的字典中。你想要使用:

print i["name"]["location"]["address1"]

0
投票

因为那些存在于“位置”子词典中。你需要这样的东西:

print i["name"]["location"]["address1"]

访问数据。


0
投票

答案是:

for element in response_data['businesses']:
    id = element['id']
    name = element['name']
    city = element['location']['city']
    zip_code = element['location']['zip_code']
    state = element['location']['state']
    display_address = element['location']['display_address']
    latitude = element['coordinates']['latitude']
    longitude = element['coordinates']['longitude']
    phone = element['phone']

    print id, name,  city, zip_code, state, display_address, latitude, longitude, phone
© www.soinside.com 2019 - 2024. All rights reserved.