" IndentationError的含义:期望一个缩进的块"例外?

时间:2017-02-01 22:22:53

标签: python

我正在学习Python但是......不明白这个错误意味着什么。

>>> for edad in range(10, 18): #Que nos muestre la edad de 10 a 18 (Errores causados por los dos puntos)...   File "<stdin>", line 2
...
  File "<stdin>", line 2

    ^
IndentationError: expected an indented block

1 个答案:

答案 0 :(得分:1)

在这里继续下去并不多,但是在这样的for语句之后,你需要在此之后加一行,并在下一个语句之前需要4个空格。许多编程语言使用{}来表示代码块的开始和停止,Python使用缩进(4个空格)来执行此操作。您的代码应该类似于:

for edad in range(10, 18):
    print(edad)