python中出现IndentationError:unindent does not match any outer indentation level错误

在编程运算的时候出现了如下的错误,意思是缩进存在错误:

问题所在:

尽管提示说是第14行存在问题,但是实际问题却出在上方:def str2float(s):以下的6行多了一个制表符。将其修正后,该错误不再出现。

python中出现IndentationError:unindent does not match any outer indentation level错误