IndentationError: expected an indented block after function definition on line 5
时间: 2023-10-13 16:23:56 浏览: 73
python出现"IndentationError: unexpected indent"错误解决办法
3星 · 编辑精心推荐
这个错误通常表示你忘记缩进了。在 Python 中,缩进是非常重要的,因为它用于表示代码块的开始和结束。请检查你的代码,特别是在函数定义后面是否有缩进。例如:
```
def my_function():
print("Hello, World!")
```
在这个例子中,第5行代码应该有一个缩进,如下所示:
```
def my_function():
print("Hello, World!")
```
这应该解决你的问题。
阅读全文