IndentationError: expected an indented block after 'with' statement on line 16
时间: 2023-11-07 18:04:43 浏览: 107
python出现"IndentationError: unexpected indent"错误解决办法
3星 · 编辑精心推荐
这个错误通常发生在在 Python 代码中使用了 `with` 语句但未对其下一行进行正确缩进。请确保在 `with` 语句后面的下一行以正确的缩进开始。
例如,下面的示例代码会出现这个错误:
```python
with open('file.txt', 'r') as f:
print(f.readline())
```
正确的写法应该是这样的:
```python
with open('file.txt', 'r') as f:
print(f.readline())
```
阅读全文