欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Python TabError inconsistent use of tabs and spaces in indentation 错误问题描述以及解决

程序员文章站 2022-05-28 23:48:22
...

1、首先,附上一个小代码:

#for循环结束后执行一些操作

projects = ['java','.net','python'];
for project in projects:
    print(project.title() + " project is start!");
	print(project.upper() + " project is processing!");
print(project.title() + " project is end!");

csdn的代码编辑器有缩进功能,而用文本编辑器编写时,如下图所示,你不知道代码缩进是否是正确的:

Python TabError inconsistent use of tabs and spaces in indentation 错误问题描述以及解决

运行之后就报下面的错误了:

Python TabError inconsistent use of tabs and spaces in indentation 错误问题描述以及解决

2、原因以及解决方法:

由于代码中混用了四个空格和Tab键缩进造成的,导致报了这个错误,检查代码,确实是有问题,就如上面csdn代码编辑器一样,四个空格和Tab键的缩进不一样,统一一下缩进方式为Tab,代码改后如下所示:

#for循环结束后执行一些操作

projects = ['java','.net','python'];
for project in projects:
	print(project.title() + " project is start!");
	print(project.upper() + " project is processing!");
print(project.title() + " project is end!");

便可以正常运行了,如下图所示:

Python TabError inconsistent use of tabs and spaces in indentation 错误问题描述以及解决

以上内容仅供学习参考,谢谢!