IndentationError: expected an indented block after 'if' statement on line 10
时间: 2023-10-12 09:19:25 浏览: 67
python出现"IndentationError: unexpected indent"错误解决办法
3星 · 编辑精心推荐
这个错误通常是由于在 if 语句后面没有缩进造成的。请检查你的代码,确保在所有 if 语句后面都有正确的缩进。
例如,如果你的代码是这样的:
```
if x == 1:
print("x is 1")
```
你需要将第二行缩进,使其成为 if 语句的一个块:
```
if x == 1:
print("x is 1")
```
这样就可以避免 IndentationError 错误了。
阅读全文