TabError: inconsistent use of tabs and spaces in indentation

简介: 这个报错的意思是说IDE分不清tab和空格,说明你的代码中混用了tab和空格。

本文使用PyCharm的格式化代码功能解决TabError: inconsistent use of tabs and spaces in indentation。


1、提出问题:


当把代码从别处复制进来PyCharm,然后运行报错:TabError: inconsistent use of tabs and spaces in indentation


20181124183547561.png


2、 分析原因


这个报错的意思是说IDE分不清tab和空格,说明你的代码中混用了tab和空格。


传统的方式是找出代码中报错的地方,然后修改。


3、 解决方案:格式化代码!


具体操作是:Code -->Reformat Code


20181124185103181.png


再次尝试运行,问题完美解决!


目录
相关文章
|
7月前
|
小程序 JavaScript
Avoid mutating a prop directly since the value will be overwritten whenever the parent comp
Avoid mutating a prop directly since the value will be overwritten whenever the parent comp
|
JavaScript
[Vue warn]: Avoid mutating a prop directly since the value will be overwritten whenever the parent .(一)
大致意思就是props接收到的从父组件传过来的tableData不能直接修改。
156 0
|
JavaScript
[Vue warn]: Avoid mutating a prop directly since the value will be overwritten whenever the parent .(二)
1.在data中声明一个变量接收props的值,然后再去改变data里的这个值 2. 用computed属性 3.用data保存数据,watch监听
105 0
|
JavaScript
vue 里 使用 eslint 报错 error:Mixed spaces and tabs (no-mixed-spaces-and-tabs)
vue 里 使用 eslint 报错 error:Mixed spaces and tabs (no-mixed-spaces-and-tabs)
503 0
vue 里 使用 eslint 报错 error:Mixed spaces and tabs (no-mixed-spaces-and-tabs)
inconsistent use of tabs and spaces in indentation
inconsistent use of tabs and spaces in indentation
128 0
inconsistent use of tabs and spaces in indentation
|
数据可视化 Python
解决TabError: inconsistent use of tabs and spaces in indentation
inconsistent use of tabs and spaces in indentation
2519 0
解决TabError: inconsistent use of tabs and spaces in indentation
|
JavaScript
Avoid mutating a prop directly since the value will be overwritten whenever the parent component re-
Avoid mutating a prop directly since the value will be overwritten whenever the parent component re-
Avoid mutating a prop directly since the value will be overwritten whenever the parent component re-