IndentationError: expected an indented block after 'if' statement on line 70
时间: 2023-07-06 20:18:26 浏览: 68
python出现"IndentationError: unexpected indent"错误解决办法
3星 · 编辑精心推荐
这个错误通常是因为在if语句后面没有加缩进导致的。在Python中,缩进是非常重要的,它定义了代码块的范围。请检查你的代码,确保在if语句后面的代码块有正确的缩进。例如:
```
if x > 0:
print("x is positive")
else:
print("x is negative or zero")
```
在这个例子中,if语句后面的代码块有4个空格的缩进。如果你没有加缩进,就会出现IndentationError错误。
阅读全文