IndentationError: expected an indented block after 'while' statement on line 85
时间: 2023-10-19 16:31:14 浏览: 200
python出现"IndentationError: unexpected indent"错误解决办法
3星 · 编辑精心推荐
在Python编程过程中,当你在第85行的while语句之后遇到"IndentationError: expected an indented block"的错误提示时,这意味着在该行之后需要一个缩进块。这是因为在Python中,缩进非常重要,它用于标识代码块的开始和结束。
要解决这个错误,你可以按照以下步骤进行操作:
1. 确保在while语句后面添加了一个冒号(:)。在Python中,冒号是定义语句块的标志。
2. 确保在while语句之后的下一行开始缩进。缩进可以使用空格或制表符,但在同一个代码块中必须保持一致。
3. 确保缩进的行数和缩进的方式与while语句之前的代码块相同。如果之前使用了4个空格进行缩进,那么在while语句之后的代码块中也应该使用4个空格进行缩进。
例如,如果你的代码如下所示:
```
while condition:
code line 1
code line 2
```
请确保在while语句之后添加冒号,并使用相同的缩进方式进行缩进,如下所示:
```
while condition:
code line 1
code line 2
```
这样做应该能够解决"IndentationError: expected an indented block"错误。如果问题仍然存在,请检查代码中其他可能导致错误的地方。<span class="em">1</span><span class="em">2</span><span class="em">3</span>
#### 引用[.reference_title]
- *1* *3* [IndentationError:expected an indented block错误解决](https://blog.csdn.net/qq_31457413/article/details/98947128)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_1"}}] [.reference_item style="max-width: 50%"]
- *2* [IndentationError: expected an indented block解决方案](https://blog.csdn.net/wjj1996825/article/details/80924555)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_1"}}] [.reference_item style="max-width: 50%"]
[ .reference_list ]
阅读全文