标签: python api yelp
我有链接here的yelp响应。我试图打印出一个返回的名称列表。我尝试过以下方法:
print response['name'] print response[0] print response[0]['name']
所有人似乎都错了。如何访问地名列表?或者只是一个地名?
答案 0 :(得分:1)
for b in response['businesses']: print b.get('name', 'missing')