本文使用PyCharm的格式化代码功能解决TabError: inconsistent use of tabs and spaces in indentation。
1、提出问题:
当把代码从别处复制进来PyCharm,然后运行报错:TabError: inconsistent use of tabs and spaces in indentation
2、 分析原因
这个报错的意思是说IDE分不清tab和空格,说明你的代码中混用了tab和空格。
传统的方式是找出代码中报错的地方,然后修改。
3、 解决方案:格式化代码!
具体操作是:Code -->Reformat Code
再次尝试运行,问题完美解决!