【python问题集锦】——成功解决“TabError_ inconsistent use of tabs and spaces in indentation”问题

转载请注明出处:https://blog.csdn.net/PursueWin/article/details/101424472
本文出自【PersueWin的博客】

python运行代码时,如果出现如下错误:

TabError: inconsistent use of tabs and spaces in indentation

很明显,标志是Tab错误,引起这种错误一般是混合使用Tab键和4个空格键造成的,出现这种混合使用最常见的就是你从其他地方粘贴代码就会造成此种错误

解决方案:

1、在平时撸代码时候,就养成良好的习惯,建议使用Tab键,毕竟敲四个空格挺费力的哈
2、如果是从其他地方粘贴的代码,大概率就出现在粘贴的地方,重新修改一下即可
3、可以使用IDE编辑器格式化代码,如pycharm中,操作为:Code–>Reformat Code
【python问题集锦】——成功解决“TabError_ inconsistent use of tabs and spaces in indentation”问题_第1张图片

注:如果你发现更好的解决方案,请在留言区留言,谢谢!

你可能感兴趣的:(python问题集锦)