本文主要是介绍python常见错误(1)TabError: inconsistent use of tabs and spaces in indentation,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
https://blog.csdn.net/Guopiqiang/article/details/73555898
问题:Python文件运行时报TabError: inconsistent use of tabs and spaces in indentation
原因:说明Python文件中混有Tab和Space用作格式缩进。这通常是使用外部编辑器编辑Python文件时,自动采用Tab进行格式缩进。
解决:将Tab转换成4个Space(通常)或者用Python编辑器(如pyDev)格式化。
这篇关于python常见错误(1)TabError: inconsistent use of tabs and spaces in indentation的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!