IndexError:循环中超出列表的索引

时间:2018-12-21 06:36:32

标签: python list loops dictionary tweepy

我正在使用Python 3 / Tweepy创建一个列表,其中包含与各种Twitter句柄关联的用户名。

我的代码创建一个空字典,遍历列表中的句柄以获取用户名,将此信息保存在字典中,然后将字典追加到新列表中。

运行代码时,我得到IndexError: list index out of range。当我删除for循环的第四行时,我没有收到错误。关于如何解决此问题有任何想法吗?为什么这行代码会导致错误?谢谢!

这是我的代码:

def analyzer():
handles = ['@Nasdaq', '@Apple', '@Microsoft', '@amazon', '@Google', '@facebook', '@GileadSciences', '@intel']
data = []
# Grab twitter handles and append the name to data
for handle in handles:
    data_dict = {}
    tweets = api.user_timeline(handle)
    data_dict['Handle'] = handle
    data_dict['Name'] = tweets[0]['user']['name']
    data.append(data_dict)

2 个答案:

答案 0 :(得分:2)

我猜下面的代码是主要问题

 tweets = api.user_timeline(handle)

api.user_timeline()可能会返回空列表,您正在尝试访问 空列表中的第一个元素。

 tweets[0]

这就是为什么您遇到“索引超出范围”的问题。

您可以像这样修改代码-

for handle in handles:
    data_dict = {}
    tweets = api.user_timeline(handle)
    data_dict['Handle'] = handle
    if tweets:
        data_dict['Name'] = tweets[0]['user']['name']
    data.append(data_dict)

答案 1 :(得分:0)

由于您尝试使用索引0访问的空列表而发生错误。您可以通过检查列表是否为空来控制此问题:

def analyzer():
handles = ['@Nasdaq', '@Apple', '@Microsoft', '@amazon', '@Google', '@facebook', '@GileadSciences', '@intel']
data = []
# Grab twitter handles and append the name to data
for handle in handles:
    data_dict = {}
    tweets = []
    tweets = api.user_timeline(handle)
    if tweets:
        data_dict['Handle'] = handle
        data_dict['Name'] = tweets[0]['user']['name']
        data.append(data_dict)