1.错误提示“TabError: inconsistent use of tabs and spaces in indentation”
错误行有tap标志符,删除前面的,敲空格就行
例:把for 之前空白的地方,删除,敲空格就行
2. IndentationError: unindent does not match any outer indentation level
Python语法中是不支持的代码对齐中,混用TAB和空格的。
可参考:https://www.cnblogs.com/kerrycode/p/11183963.html