1、IndexError: list index out of range
第1种可能情况
list[index]index超出范围
第2种可能情况
list是一个空的 没有一个元素
进行list[0]就会出现该错误
2、IndentationError:expected an indented block
在编译时会出现这样的错IndentationError:expected an indented block说明此处需要缩进,你只要在出现错误的那一行,按空格或Tab(但不能混用)键缩进就行。
我遇到这个报错的原因不是缩进,是if语句下为空,为空时要写continue,不然会报这个错。
阅读(1810) | 评论(0) | 转发(0) |