请问这是什么错误? stock_list_3.append(code) ^ IndentationError: expected an indented block
时间: 2023-10-12 10:20:44 浏览: 65
Python中出现IndentationError:unindent does not match any outer indentation level错误的解决方法
这个错误是缩进错误。Python中使用缩进来标识代码块,如果没有正确缩进会导致IndentationError。您可以尝试将该语句放在一个代码块中,并使用四个空格或一个制表符来缩进代码块。例如:
```
if condition:
stock_list_3.append(code)
```
请确保在if语句后面有一个冒号,并且在下一行缩进。同时,确保代码块中的所有代码都缩进相同的距离。
阅读全文