标签:visual studio code sublime text3 python
Python强制缩进,使用Tab键和空格都可以,但不能混用。混用Tab和空格会导致报错:IndentationError: unindent does not match any outer indentation level。如果你的编辑器没有可视化空格和Tab,修改起来是抓狂的。
{
"editor.tabSize": 4,
"editor.insertSpaces": true,"editor.renderWhitespace": true,
"draw_white_space": "all"
}
"translate_tabs_to_spaces": true,
"draw_white_space": "all"
版权声明:本文为博主原创文章,未经博主允许不得转载。
Python编辑器设置(包括Visual Studio Code和Sublime Text3)
标签:visual studio code sublime text3 python
原文地址:http://blog.csdn.net/candcplusplus/article/details/46986131