File <tokenize>:19 y = np.asmatrix(y).reshape(-1,1) ^ IndentationError: unindent does not match any outer indentation level
时间: 2023-11-20 15:55:47 浏览: 143
Python中出现IndentationError:unindent does not match any outer indentation level错误的解决方法
5星 · 资源好评率100%
这个错误通常是由于缩进不正确引起的。在Python中,缩进非常重要,因为它决定了代码块的开始和结束。在这个特定的错误中,可能是因为代码中使用了不同数量的空格或制表符来缩进同一代码块中的不同行。建议检查代码中缩进的一致性,确保每个代码块都使用相同数量的空格或制表符进行缩进。
以下是可能的解决方案:
```python
y = np.asmatrix(y).reshape(-1, 1) # 将逗号改为正确的逗号
```
阅读全文