Python常见错误归纳

IndentationError: unexpected indent
格式不对,可能是因为 空格Tab 混用了

IndentationError: unindent does not match any outer indentation level
实时解释器中,每输入完一个程序段,就必须空一行,让前面的…变成>>>,以输入下一段程序。注意在报错的函数调用前空一行

TabError: inconsistent use of tabs and spaces in indentation
缩进问题,最好不要使用 Tab 作为缩进方式

python模块以及导入出现ImportError: No module named ‘xxx’问题
同路径下,a.py 要使用 b.py 则需要在 a.py 开头 import b
不同目录下 参考 http://blog.csdn.net/damotiansheng/article/details/43916881

你可能感兴趣的:(Python常见错误归纳)