Python错误集
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python错误集相关的知识,希望对你有一定的参考价值。
1--》IndentationError:expected an indented block
》IndentationError: unindent does not match any outer indentation level
》IndentationError: unexpected indent
报错的地方需要缩进,在出现错误的那一行,按空格或Tab(但不能混用)键缩进就行。最好都用Tab,简单些,本来打算全部用四个空格的,结果写完了,一执行到处都报错
2--》(unicode error) ‘utf-8‘ codec can‘t decode
需要将保存文件的格式换成UTF-8,在notepad++打开test.py >> (菜单栏)格式(编码)>> 选择转为UTF-8格式(Convert to UTF-8)
以上是关于Python错误集的主要内容,如果未能解决你的问题,请参考以下文章
时间序列 Python:“关键错误”`start` 参数无法匹配
如何在 python 中拟合数据集? - lr.fit(x_train, y_train) 给我错误