python : "unindent dose not math any outer indentation level"

参看资源:

【1】 Python脚本运行出现语法错误:IndentationError: unindent does not match any outer indentation level - heimanba - 博客园
https://www.cnblogs.com/heimanba/p/3783022.html

 

(1) 问题的说明: 

python :

命名已经对齐了,但仍然显示

 

(2) 问题的原因:

 Python中的缩进有自己严格的规范,在这里是因为刚段代码的;   import cx_Orecle 前的缩进是tong通过space空格实现的,而后面的缩进则是通过TAB键实现的。

即: 代码中存在 TAB  与 SPACE 的混合缩进

 

(3)解决方法

找到代码中不合理使用TAB  或 SPACE的地方,然后修改。

但是代码数很多的话,一行行的找会很麻烦,可以使用NotpNotpad++中的工具快速显示定位:

python :

python :

 

你可能感兴趣的:(Python)