IndentationError: expected an indented block报错如何修改
时间: 2023-12-30 11:24:28 浏览: 86
vs没报错leetcode报错-C-Practice:C-实践
IndentationError: expected an indented block报错是因为在使用for循环时,没有正确缩进代码块。要解决这个错误,需要在for循环后的代码行前添加正确的缩进。
以下是一个示例,演示了如何修复IndentationError: expected an indented block报错:
```python
for i in range(5):
print(i) # 注意这里的代码行前有四个空格的缩进
```
在这个示例中,我们使用了for循环来迭代范围为0到4的数字,并打印每个数字。注意到在print语句前有四个空格的缩进,这是为了正确缩进代码块。
阅读全文