美文网首页
IndexError: list index out of ra

IndexError: list index out of ra

作者: Rayinitial | 来源:发表于2018-09-17 22:09 被阅读0次

    在今晚练习Matplotlib读取CSV文件并绘图的过程中,出现错误:

    IndexError: list index out of range

    百思不得其解,通过百度相关答案查找原因。

    这个错误出现大约有两种情况:
    第1种可能情况
    list[index]index超出范围
    第2种可能情况
    list是一个空的 没有一个元素
    进行list[0]就会出现该错误

    我的错误根因为第2种,文件中有空行,删除并重新Run一下,问题解决。

    Traceback (most recent call last):
      File "/Users/Rayinitial/PycharmProjects/Work/Matplotlib.py", line 141, in <module>
        x.append(int(row[0]))
    IndexError: list index out of range
    ['1', '5']
    ['2', '3']
    ['3', '4']
    ['4', '7']
    ['5', '4']
    ['6', '3']
    ['7', '5']
    ['8', '7']
    ['9', '4']
    ['10', '4']
    []
    

    来源参考: https://blog.csdn.net/zhoubbt/article/details/53673637

    相关文章

      网友评论

          本文标题:IndexError: list index out of ra

          本文链接:https://www.haomeiwen.com/subject/uztjnftx.html