python常见的报错类型(python3.7的常见报错集合)

一开始可能对错误类型的英文不太熟悉,可以直接复制到百度搜索:

  • IndentationError: unindent does not match any outer indentation level
  • 缩进错误:未缩进与任何外部缩进级别都不匹配

python常见的报错类型(python3.7的常见报错集合)(1)

  • IndentationError: expected an indented block
  • 缩进错误:需要缩进的块

python常见的报错类型(python3.7的常见报错集合)(2)

  • SyntaxError: invalid character in identifier
  • SyntaxError:标识符中的字符无效(中文输入)

python常见的报错类型(python3.7的常见报错集合)(3)

  • SyntaxError: invalid syntax
  • 语法错误:无效语法 ( 少了冒号,语法无效,for x in range(10): )

python常见的报错类型(python3.7的常见报错集合)(4)

  • NameError: name 'i' is not defined
  • 名称错误:未定义名称“i”

python常见的报错类型(python3.7的常见报错集合)(5)

  • 经常会出现在比较长的单词拼写

python常见的报错类型(python3.7的常见报错集合)(6)

  • 把= 改为==

python常见的报错类型(python3.7的常见报错集合)(7)

  • 在while上面给x赋值,如x=0

python常见的报错类型(python3.7的常见报错集合)(8)

python常见的报错类型(python3.7的常见报错集合)(9)

,

免责声明:本文仅代表文章作者的个人观点,与本站无关。其原创性、真实性以及文中陈述文字和内容未经本站证实,对本文以及其中全部或者部分内容文字的真实性、完整性和原创性本站不作任何保证或承诺,请读者仅作参考,并自行核实相关内容。文章投诉邮箱:anhduc.ph@yahoo.com

    分享
    投诉
    首页