IndentationError: expected an indented block after 'if' statement on line 65
时间: 2023-11-21 18:53:57 浏览: 188
Python--学习笔记.docx
IndentationError: expected an indented block after 'if' statement on line 65 表示在第65行的if语句后面缺少缩进块。解决方案是在if语句后面添加缩进块,例如:
```python
if condition:
# 这里是缩进块
do_something()
```
阅读全文