尝试仅访问多伦多趋势的“名称”部分。 到目前为止,我有这个,但它给了我错误:
toronto = t.get_place_trends(id=4118)
trend_array = []
for trend in toronto.trends.name:
trend_array.append(trend)
print trend_array
print trend
在auth之后,它返回强制进入数组的整个对象列表(由于某种原因无法通过索引访问)和列表。
答案 0 :(得分:3)
哇,toronto
返回一个必须由索引访问的列表真的很奇怪。
以下是您需要的代码:
toronto = t.get_place_trends(id=4118)
trend_array = []
if toronto:
for trend in toronto[0].get('trends', []):
trend_array.append(trend['name'])
print trend_array
print trend