爲了python 的pep8 標準,把tab鍵輸入從\t的製表符 轉爲4個空格。python
1在vscode下邊欄點擊 「空格」 在上面選項裏設置 使用空格縮進, 以及能夠 將縮進轉換爲空格spa
2在「文件->首選項->設置」的「用戶設置」裏添加code
"editor.detectIndentation": false,
"editor.renderControlCharacters": true,
"editor.renderWhitespace": "all",
第一個改爲false目的是:不要檢測到第一個是tab,就後面都用tab,這樣會覆蓋默認設置。
第2 3個顯示 製表符是→ 4個空格是....