【学习笔记】Python中遇到TabError: inconsistent use of tabs and spaces in indentation VS解决办法

最近在学习Python,将遇到的问题和解决想记录下来。今天记录第一篇:

我在使用VS学习Python,在Debug的过程中遇到“ inconsistent use of tabs and spaces in indentation”
【学习笔记】Python中遇到TabError: inconsistent use of tabs and spaces in indentation VS解决办法_第1张图片
百度了一下,原因是写代码是Tab和空格的使用混用了;
但是,我一直使用Tab,后来发现,原来VS将我的Tab转化成了4个空格;继续Research,找到了VS中的设置
Tools->Options->Text Editor->Python
展开后,选择Tab
【学习笔记】Python中遇到TabError: inconsistent use of tabs and spaces in indentation VS解决办法_第2张图片
选择Keep tabs,这样VS就一直认为你的Tab只是Tab而没有转化成空格;当然,反之,如果想转化Tab成为空格,也是同样在这里设置。

你可能感兴趣的:(解决方案,学习笔记)