IndentationError是否是Python中的语法错误?

时间:2013-10-15 07:29:08

标签: python python-3.x syntax

我有一个简单的问题,

Python中的IndentationErrorSyntaxError吗?

我认为不是,但由于我是初学者,我想确定。 语法错误只是那些在解释器中将SyntaxError作为响应的错误吗?例如,如果我输入

3f = 22 

我得到了

SyntaxError: invalid syntax 

所以,如果有其他东西(IndentationErro r等),它可能是SyntaxError的子类型吗?

2 个答案:

答案 0 :(得分:13)

>>> issubclass(IndentationError, SyntaxError)
True

这意味着是的

更多信息herehere

答案 1 :(得分:3)

您的示例是SyntaxError,因为您不能拥有以数字开头的标识符:

>>> 3f = 22
  File "<stdin>", line 1
    3f = 22
     ^
SyntaxError: invalid syntax


>>>     f3 = 22
  File "<stdin>", line 1
    f3 = 22
    ^
IndentationError: unexpected indent


>>> def test():
... f3 = 22
  File "<stdin>", line 2
    f3 = 22
     ^
IndentationError: expected an indented block

IndentationError是一种SyntaxError,请参阅以下方法中的方法解析顺序:help(IndentationError)和:http://docs.python.org/2/library/exceptions.html#exceptions.IndentationError

有效标识符:

test
test3
test_3
__3Test_3______

无效的标识符:

3f
333
33__
# Using any symbol other than: _

另见:

http://docs.python.org/2/reference/lexical_analysis.html#identifiers