python:IndentationError: expected an indented block

今天自学Python中的 for 循环功能。遇到了一个问题,IndentationError: expected an indented block


这个错误跟归结到是由于自己的不认真引起的。 在教科书中明确提醒了要有空格。

在for 循环的第二行需要有空格、或者tab,他才认为是每次循环需要执行的动作。修改这个错误很简单,在标注的1 这一行,增加一个 或多个空格 或者tab。 个人建议使用tab(四个空格)一是养成编码习惯, 二是代码整洁、好看。

你可能感兴趣的:(python:IndentationError: expected an indented block)