簡體   English   中英

為什么我收到此錯誤? twitter_list_dict.append(line [0])IndexError:列表索引超出范圍

[英]why am I getting this error? twitter_list_dict.append(line[0]) IndexError: list index out of range

Traceback (most recent call last):
  File "D:\myscripts\NewTermSentimentInference.py", line 88, in <module>
    main()
  File "D:\myscripts\NewTermSentimentInference.py", line 34, in main
    tweets = tweet_dict(twitterData)
  File "D:\myscripts\NewTermSentimentInference.py", line 15, in tweet_dict
    twitter_list_dict.append(line[0])
IndexError: list index out of range

碼:

twitterData = sys.argv[0] # csv file

def tweet_dict(twitterData):  
    ''' (file) -> list of dictionaries
    This method should take your csv file
    file and create a list of dictionaries.
    '''
    twitter_list_dict = []
    twitterfile = open(twitterData)
    twitterreader = csv.reader(twitterfile)
    for line in twitterreader:
        **twitter_list_dict.append(line[1])**
    return twitter_list_dict


def sentiment_dict(sentimentData):
    ''' (file) -> dictionary
    This method should take your sentiment file
    and create a dictionary in the form {word: value}
    '''
    afinnfile = open(sentimentData)
    scores = {} # initialize an empty dictionary
    for line in afinnfile:
        term, score  = line.split("\t")  # The file is tab-delimited. "\t" means "tab character"
        scores[term] = float(score)  # Convert the score to an integer.   
    return scores # Print every (term, score) pair in the dictionary


def main():

    tweets = tweet_dict(twitterData)
    sentiment = sentiment_dict("AFINN-111.txt")
    accum_term = dict()

    """Calculating sentiment scores for the whole tweet with unknown terms set to score of zero
    See -> DeriveTweetSentimentEasy
    """

    for index in range(len(tweets)):

        tweet_word = tweets[index].split()
        sent_score = 0 # sentiment of the sentence
        term_count = {}
        term_list = []

嘗試進行情緒分析,但是在試圖從csv文件中創建字典的方法中的代碼部分的中面對索引錯誤,該文件具有從Twitter訪問的推文,有人可以幫助我嗎?

檢查輸入CSV是否為空行。

如果line是一個空列表,那么'list index out of range'錯誤將在twitter_list_dict.append(line[0])拋出,因此沒有第一個要引用的元素。 最有可能是罪魁禍首:一個或多個在CSV行是空的,這將導致csv.reader返回一個空列表line

如果預期CSV中有空行,您可以通過添加檢查來跳過它們以確保該行不為空:

for line in twitterreader:
  if line: # Check if line is non-empty
    twitter_list_dict.append(line[0])
return twitter_list_dict

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM