python新手常见错误.docxVIP

  • 2
  • 0
  • 约4.19千字
  • 约 8页
  • 2017-12-14 发布于河南
  • 举报
python新手常见错误

当初学 Python 时,想要弄懂 Python 的错误信息的含义可能有点复杂。这里列出了常见的的一些让你程序 crash 的运行时错误。1)忘记在?if?,?elif?,?else?,?for?,?while?,?class?,def?声明末尾添加: (导致 “SyntaxError :invalid syntax”)该错误将发生在类似如下代码中:/question/89964_62779/?12if spam == 42?print(Hello!)2)使用 = 而不是 ==(导致“SyntaxError: invalid syntax”)?= 是赋值操作符而 == 是等于比较操作。该错误发生在如下代码中:/question/89964_62779/?12if spam = 42:?print(Hello!)3)错误的使用缩进量。(导致“IndentationError:unexpected indent”、“IndentationError:unindent does not match any outer indetation level”以及“IndentationError:expected an indented block”)记住缩进增加只用在以:结束的语句之后,而之后必须恢复到之前的缩进格式。该错误发生在如下代码中:/question/89964_62779/?12

您可能关注的文档

文档评论(0)

1亿VIP精品文档

相关文档