python常见错误

NameError: name 'ac' is not defined(变量名未定义,常见于前后变量名出错或内容定义错误)

SyntaxError: unexpected character after line continuation character  (语法错误,行继续符后出现意外字符)

SyntaxError: invalid syntax(语法错误。无效语法)

TypeError: can only concatenate str (not "int") to str(类型错误,只能将str(而不是“int”)连接到str,Python发现你使用了一个值为整数(int)的变量,但它不知道该如何解读这个值)

IndexError: list assignment index out of range(索引错误,列表分配索引超出范围)

IndentationError: expected an indented block(缩进错误,需要缩进块)

IndentationError: unexpected indent(缩进错误:意外缩进)

SyntaxError: invalid syntax(语法错误:无效语法)


你可能感兴趣的:(python常见错误)