侧边栏壁纸
  • 累计撰写 2,046 篇文章
  • 累计创建 73 个标签
  • 累计收到 20 条评论

目 录CONTENT

文章目录

Python常见报错

大猿本猿
2023-07-31 / 62 阅读 / 242 字

1. syntaxerror: invalid syntax语法错误:无效语法

2. syntaxerror: unexpected EOF while parsing语法错误:多了无法解析的符号(检查是否多了或少了括号)

3. syntaxerror: invalid character in identifier语法错误:有无效标识符(检查中文符号)

4. indexerror: list index out of range索引错误:列表超出索引范围(检查列表是否为空)

5. typeerror: must be str, not int类型错误:数据不是正确的数据类型,比如字符串和数字直接拼接(检查数据类型)

6. indentationerror: expected an indented block缩进错误:检查代码的缩进是否正确

7. valueerror: substring not found值错误:输入的数据类型跟要求不符合

8. nameerror: name 'a' is not defined未初始化对象,变量没有被定义

9. attributeerror: 'tuple' object has no attribute 'remove'属性错误:该对象没有这个属性、方法(检查数据类型

Python常见报错