IndentationError: expected an indented block after 'with' statement on line 3
时间: 2023-07-06 18:13:12 浏览: 58
python出现"IndentationError: unexpected indent"错误解决办法
3星 · 编辑精心推荐
这个错误通常是因为你在使用 with 语句时没有正确缩进造成的。请检查你的代码,确保在使用 with 语句时,后面的代码块已经缩进了。
例如,在打开一个文件时使用 with 语句的正确缩进如下:
```
with open('file.txt', 'r') as f:
# 代码块
```
请注意,代码块必须缩进,否则会引发 IndentationError 错误。
阅读全文