2013-11-03 65 views
-1

我有一個yelp響應鏈接here。我正在嘗試打印出返回的名稱列表。我曾嘗試以下方法:在Python中訪問yelp API點

print response['name'] 
print response[0] 
print response[0]['name'] 

而且所有似乎都會出錯。我如何訪問地名的列表?或者只有一個地名?

+0

你看到了什麼錯誤? – satoru

回答

1
for b in response['businesses']: 
    print b.get('name', 'missing')