python错误总结

TypeError: ‘ <‘ not supported between instance of ‘str’ and ‘int ’ 

不支持在字符串和数字之间使用<


ValueError:substring not found

值错误  子串没找到

syntaxError: 'return' outside function 

语法错误  return 不在方法内

IndentationError :unindent does not match any outerindentation level

缩进错误不匹配任何缩进等级

AttributeError 属性错误

TypeError : Not all arguments converted during string  formatting

不是在字符串格式化过程中转换的所有参数

TypeError:pop expected at least 1 arguments, got 0

类型错误  pop方法期望得到至少一个参数  但是现在参数为0


 TypeError: must be str, not int

类型错误:必须是一个字符串  不能是数字


AttributeError: 'tuple' object has no attribute 'remove'

属性错误元组对象没有属性remove


KeyError:'fond'

键错误


TypeError:pop expected at least 1 arguments, got 0

类型错误  pop方法期望得到至少一个参数  但是现在参数为0


NameError:name 'false' is not defined

异常 'false'没有被定义


SyntaxError:Non-UTF-8 code starting with '\xe7' in file

语法错误:非utf -8代码,以“\xe7”开头










你可能感兴趣的:(Python吧)